From b410d85b5f39e38c3b32503796a10796b075fa6c Mon Sep 17 00:00:00 2001 From: Gleidson Daniel Silva Date: Tue, 11 Apr 2023 15:21:42 -0300 Subject: [PATCH] fix: Call back button label text is inverted on the mobile (#5014) --- .../VideoConferenceBlock/components/VideoConferenceEnded.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx index b4c95fa8e..388bd4e80 100644 --- a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx +++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx @@ -34,7 +34,7 @@ export default function VideoConferenceEnded({ <> - {createdBy.username === username ? i18n.t('Call_back') : i18n.t('Call_again')} + {createdBy.username === username ? i18n.t('Call_again') : i18n.t('Call_back')} {i18n.t('Call_was_not_answered')}