diff --git a/react/features/gifs/components/native/GifsMenu.js b/react/features/gifs/components/native/GifsMenu.js index 4c877bd0a..8253f16f9 100644 --- a/react/features/gifs/components/native/GifsMenu.js +++ b/react/features/gifs/components/native/GifsMenu.js @@ -1,7 +1,6 @@ import { GiphyContent, GiphyGridView, GiphyMediaType } from '@giphy/react-native-sdk'; import React, { useCallback, useState } from 'react'; import { useTranslation } from 'react-i18next'; -import { Image, Text, View } from 'react-native'; import { useDispatch } from 'react-redux'; import { createGifSentEvent, sendAnalytics } from '../../../analytics'; @@ -10,7 +9,7 @@ import { sendMessage } from '../../../chat/actions.any'; import { goBack } from '../../../mobile/navigation/components/conference/ConferenceNavigationContainerRef'; import ClearableInput from '../../../participants-pane/components/native/ClearableInput'; import { formatGifUrlMessage, getGifUrl } from '../../functions'; - +import GifsMenuFooter from './GifsMenuFooter'; import styles from './styles'; const GifsMenu = () => { @@ -34,19 +33,9 @@ const GifsMenu = () => { goBack(); }, []); - - const footerComponent = () => ( - - Powered by - - - ); - return ( { + const { t } = useTranslation(); + + return( + + { t('poweredby') } + + + ) +}; + +export default GifsMenuFooter diff --git a/react/features/gifs/components/native/styles.js b/react/features/gifs/components/native/styles.js index 68b01f423..152413403 100644 --- a/react/features/gifs/components/native/styles.js +++ b/react/features/gifs/components/native/styles.js @@ -12,7 +12,9 @@ export default { marginTop: BaseTheme.spacing[3] }, - input: { textAlign: 'left' } + input: { + textAlign: 'left' + } }, grid: { @@ -34,7 +36,7 @@ export default { }, creditText: { - color: 'white', + color: BaseTheme.palette.text01, fontWeight: 'bold' } };