From 64b190a67b72b006ddb397c206c7a0c971fc3820 Mon Sep 17 00:00:00 2001 From: Leander Tolksdorf <leander.tolksdorf@fu-berlin.de> Date: Mon, 31 Jan 2022 17:58:16 +0100 Subject: [PATCH] enable debug mode on i18n --- client/src/i18n/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/i18n/index.ts b/client/src/i18n/index.ts index a7fbbe9..5cdf70e 100644 --- a/client/src/i18n/index.ts +++ b/client/src/i18n/index.ts @@ -21,7 +21,7 @@ i18n // for all options read: https://www.i18next.com/overview/configuration-options .init({ fallbackLng: "en", - debug: true, + debug: false, interpolation: { escapeValue: false, // not needed for react as it escapes by default }, -- GitLab