Skip to content

Commit

Permalink
fix(audio-selector): speaker locales
Browse files Browse the repository at this point in the history
  • Loading branch information
frankemax committed May 14, 2024
1 parent 65d4854 commit 7b5588b
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 7b5588b

Please sign in to comment.