Skip to content

Commit

Permalink
Merge pull request #770 from frankemax/769-audio-selector
Browse files Browse the repository at this point in the history
fix(audio-selector): speaker locales
  • Loading branch information
frankemax authored May 14, 2024
2 parents 65d4854 + 7b5588b commit dc0bc19
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ const AudioDeviceSelectorModal = () => {
key={ad.uid}
selected={ad.selected}
>
{ad.name}
{ad.name === 'Speaker'
? t('mobileSdk.audio.deviceSelector.speakerPhone')
: ad.name}
</Styled.OptionsButton>
);
}
Expand Down

0 comments on commit dc0bc19

Please sign in to comment.