From 11835f11af0f278cadcfa2e585dc944ff948a2e0 Mon Sep 17 00:00:00 2001 From: Julian Kniephoff Date: Tue, 23 Apr 2024 15:43:40 +0200 Subject: [PATCH] Remove `wait` option from `react-i18next` initialization This option never did anything in any version we ever used. --- app/src/i18n/i18n.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/i18n/i18n.ts b/app/src/i18n/i18n.ts index d839280080..95e30aaeb0 100644 --- a/app/src/i18n/i18n.ts +++ b/app/src/i18n/i18n.ts @@ -61,7 +61,6 @@ const resources = { }; // Configuration of i18next -// @ts-expect-error TS(2769): No overload matches this call. i18n .use(Backend) .use(LanguageDetector) @@ -82,7 +81,6 @@ i18n }, }, react: { - wait: true, useSuspense: false, }, });