From 7a9f2d606f953bad1749e82b766c6ac4cf06db98 Mon Sep 17 00:00:00 2001 From: Maxime Quandalle Date: Sat, 12 Oct 2019 18:45:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Supprime=20une=20fausse=20erreur?= =?UTF-8?q?=20i18n=20au=20d=C3=A9marrage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ce faux positif apparaissait systématiquement au démarrage du site, ainsi que lors de l'import de la lib NPM "mon-entreprise". --- source/i18n.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/source/i18n.js b/source/i18n.js index e00a46ae3..de65ecd54 100644 --- a/source/i18n.js +++ b/source/i18n.js @@ -15,18 +15,16 @@ let lang = 'fr' setToSessionStorage('lang', lang) -i18next.use(initReactI18next).init( - { +i18next + .use(initReactI18next) + .init({ lng: lang, resources: { en: { translation: enTranslations } } - }, - (err, t) => { - console && console.error('Error from i18n load', err, t) //eslint-disable-line no-console - } -) + }) + .catch(err => console?.error('Error from i18n load', err)) export default i18next