From 1b695488e34a48efacd5970f0ee683057b8304cf Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 23:36:54 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- test/backend-test/check-translations.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/backend-test/check-translations.test.js b/test/backend-test/check-translations.test.js index b79f6d5a2..b120dcc00 100644 --- a/test/backend-test/check-translations.test.js +++ b/test/backend-test/check-translations.test.js @@ -38,7 +38,7 @@ describe("Check Translations", () => { while ((match = translationRegex.exec(line)) !== null) { const key = match.groups.key1 || match.groups.key2; if (key && !enTranslations[key]) { - const [start, end] = match.groups.key1 ? match.indices.groups.key1 : match.indices.groups.key2; + const [ start, end ] = match.groups.key1 ? match.indices.groups.key1 : match.indices.groups.key2; missingKeys.push({ filePath, lineNum: lineNum + 1,