From b586d50ca2d998fd816de43ae0c7791631242868 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 23 Mar 2026 08:34:44 -0500 Subject: [PATCH] formatting --- web/i18next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/i18next.config.ts b/web/i18next.config.ts index 7ede497a8..903cb9c8b 100644 --- a/web/i18next.config.ts +++ b/web/i18next.config.ts @@ -28,7 +28,8 @@ function ignoreDynamicNamespaceKeys(): Plugin { for (const key of keys.keys()) { // Each map key is "ns:actualKey" format const separatorIndex = key.indexOf(":"); - const actualKey = separatorIndex >= 0 ? key.slice(separatorIndex + 1) : key; + const actualKey = + separatorIndex >= 0 ? key.slice(separatorIndex + 1) : key; if (falsePositiveKeys.has(actualKey)) { keys.delete(key); }