fix: Call back button label text is inverted on the mobile (#5014)

This commit is contained in:
Gleidson Daniel Silva 2023-04-11 15:21:42 -03:00 committed by GitHub
parent 2849288e4a
commit cbfc810d5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export default function VideoConferenceEnded({
<>
<Touchable style={style.callToActionCallBack} onPress={showInitCallActionSheet}>
<Text style={style.callToActionCallBackText}>
{createdBy.username === username ? i18n.t('Call_back') : i18n.t('Call_again')}
{createdBy.username === username ? i18n.t('Call_again') : i18n.t('Call_back')}
</Text>
</Touchable>
<Text style={style.callBack}>{i18n.t('Call_was_not_answered')}</Text>