fix call translation (#5013)
Co-authored-by: Reinaldo Neto <47038980+reinaldonetof@users.noreply.github.com>
This commit is contained in:
parent
2361789e0c
commit
df62706b02
|
@ -1,7 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import * as List from '../../../containers/List';
|
import * as List from '../../../containers/List';
|
||||||
import i18n from '../../../i18n';
|
|
||||||
import { useVideoConf } from '../../../lib/hooks/useVideoConf';
|
import { useVideoConf } from '../../../lib/hooks/useVideoConf';
|
||||||
|
|
||||||
export default function CallSection({ rid }: { rid: string }): React.ReactElement | null {
|
export default function CallSection({ rid }: { rid: string }): React.ReactElement | null {
|
||||||
|
@ -12,7 +11,7 @@ export default function CallSection({ rid }: { rid: string }): React.ReactElemen
|
||||||
<List.Section>
|
<List.Section>
|
||||||
<List.Separator />
|
<List.Separator />
|
||||||
<List.Item
|
<List.Item
|
||||||
title={i18n.t('Call')}
|
title={'Call'}
|
||||||
onPress={showInitCallActionSheet}
|
onPress={showInitCallActionSheet}
|
||||||
testID='room-actions-call'
|
testID='room-actions-call'
|
||||||
left={() => <List.Icon name='phone' />}
|
left={() => <List.Icon name='phone' />}
|
||||||
|
|
Loading…
Reference in New Issue