Skip to content

Commit

Permalink
Merge pull request #66 from PaperMonster/hotfix/fix-onboard-complete-…
Browse files Browse the repository at this point in the history
…localization

Fix localization on onboard complete screen
  • Loading branch information
Guutong authored Jan 18, 2021
2 parents e4ba9cc + 129a8c0 commit dfd2746
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/navigations/2-Onboarding/OnboardComplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import { applicationState } from '../../state/app-state'

import I18n from '../../../i18n/i18n';

const STRING = {
TITLE: I18n.t('register_successfully'),
SUB_TITLE: I18n.t('can_start_using_now'),
NEXT_BUTTON: I18n.t('start'),
}

export const OnboardComplete = () => {

const STRING = {
TITLE: I18n.t('register_successfully'),
SUB_TITLE: I18n.t('can_start_using_now'),
NEXT_BUTTON: I18n.t('start'),
}
const navigation = useNavigation()
const resetTo = useResetTo()
return (
Expand Down

0 comments on commit dfd2746

Please sign in to comment.