From cafdcac47eb60a966f1bd9f3d2174a589a50ad7d Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 7 Jan 2021 20:25:54 +0100 Subject: [PATCH] fix(i18n): disable debug of i18next --- src/i18n.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n.tsx b/src/i18n.tsx index 18cf68f..aa459c7 100644 --- a/src/i18n.tsx +++ b/src/i18n.tsx @@ -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),