fix: Call back button label text is inverted on the mobile (#5014)
This commit is contained in:
parent
2849288e4a
commit
cbfc810d5a
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue