Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #830 from cds-snc/move-lang-under-settings
Browse files Browse the repository at this point in the history
Move language under settings
  • Loading branch information
timarney committed Jul 22, 2020
2 parents ca453ac + d073125 commit b1f9783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/home/views/InfoShareView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export const InfoShareView = () => {
</Text>
</Box>
<Box paddingHorizontal="m" borderRadius={10} overflow="hidden" marginBottom="m">
<InfoShareItem onPress={onRegion} text={i18n.translate('Info.ChangeRegion')} icon="icon-chevron" lastItem />
<InfoShareItem onPress={onRegion} text={i18n.translate('Info.ChangeRegion')} icon="icon-chevron" />
<InfoShareItem onPress={onLanguage} text={i18n.translate('Info.ChangeLanguage')} icon="icon-chevron" lastItem />
</Box>
<Box marginTop="l" marginBottom="m">
<Text variant="settingTitle" fontWeight="normal">
Expand All @@ -69,7 +70,6 @@ export const InfoShareView = () => {
<InfoShareItem onPress={onGetCode} text={i18n.translate('Info.GetCode')} icon="icon-chevron" />
<InfoShareItem onPress={onLearnMore} text={i18n.translate('Info.LearnMore')} icon="icon-chevron" />
<InfoShareItem onPress={onPrivacy} text={i18n.translate('Info.Privacy')} icon="icon-chevron" />
<InfoShareItem onPress={onLanguage} text={i18n.translate('Info.ChangeLanguage')} icon="icon-chevron" />
<InfoShareItem
onPress={onHelp}
text={i18n.translate('Info.Help')}
Expand Down

0 comments on commit b1f9783

Please sign in to comment.