From d253b402a464f782b04206326c27603ab6bb1b8f Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 30 Dec 2025 15:23:33 -0600 Subject: [PATCH] remove console warning --- web/src/utils/i18n.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/src/utils/i18n.ts b/web/src/utils/i18n.ts index ca7ad8e25..f149f467e 100644 --- a/web/src/utils/i18n.ts +++ b/web/src/utils/i18n.ts @@ -79,9 +79,6 @@ i18n parseMissingKeyHandler: (key: string) => { const parts = key.split("."); - // eslint-disable-next-line no-console - console.warn(`Missing translation key: ${key}`); - if (parts[0] === "time" && parts[1]?.includes("formattedTimestamp")) { // Extract the format type from the last part (12hour, 24hour) const formatType = parts[parts.length - 1];