Skip to content

Commit

Permalink
fix(i18n): disable debug of i18next
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Jan 7, 2021
1 parent dd44526 commit cafdcac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/i18n.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default i18n
.init({
resources: translations,
cleanCode: true,
debug: true,
debug: false,
fallbackLng: {
'de-DE': ['de'],
'en-US': ['en'],
'de-DE': ['de'],
default: [I18N_DEFAULT],
},
whitelist: I18N_LANGUAGES_SUPPORTED.map((language) => language.cultureLang),
Expand Down

0 comments on commit cafdcac

Please sign in to comment.