From e1c30eb0d7066bf11c4b2e89780da80585da8d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Slab=C3=BD?= Date: Thu, 20 Nov 2025 12:02:19 +0100 Subject: [PATCH] Update index.ts --- frontend/src/locales/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/locales/index.ts b/frontend/src/locales/index.ts index 865cc8029..1c9013f96 100644 --- a/frontend/src/locales/index.ts +++ b/frontend/src/locales/index.ts @@ -31,7 +31,7 @@ const i18n = createI18n({ cs_CZ(choice: number) { if (choice === 0) return 0; if (choice === 1) return 1; - return (choice >= 2 && choice <= 4) ? 2 : 3; + return choice >= 2 && choice <= 4 ? 2 : 3; }, }, });