From b58f8e1e9f338e03d6336be7ce241b4bf233cce7 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 30 Oct 2023 23:05:53 +0200 Subject: [PATCH] Remove console log --- frontend/src/Utilities/String/translate.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/Utilities/String/translate.ts b/frontend/src/Utilities/String/translate.ts index 5e4728c5c..36a6093d7 100644 --- a/frontend/src/Utilities/String/translate.ts +++ b/frontend/src/Utilities/String/translate.ts @@ -29,10 +29,6 @@ export default function translate( ) { const translation = translations[key] || key; - if (!(key in translations)) { - console.warn(`MISSING ${key}`); - } - if (tokens) { // Fallback to the old behaviour for translations not yet updated to use named tokens Object.values(tokens).forEach((value, index) => {