From 7e02a03bdaac8ba78a05f3010bdbe9a986539acb Mon Sep 17 00:00:00 2001 From: lila Date: Thu, 23 Jul 2026 14:15:53 +0200 Subject: [PATCH] renaming difficulty level intermediate to medium --- apps/web/src/components/game/GameSetup.tsx | 6 +++--- packages/shared/src/constants.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/src/components/game/GameSetup.tsx b/apps/web/src/components/game/GameSetup.tsx index 269818c..bc52d65 100644 --- a/apps/web/src/components/game/GameSetup.tsx +++ b/apps/web/src/components/game/GameSetup.tsx @@ -15,9 +15,9 @@ const LABELS: Record = { es: "Spanish", noun: "Nouns", verb: "Verbs", - easy: "Easy", - intermediate: "Intermediate", - hard: "Hard", + easy: "easy", + medium: "medium", + hard: "hard", "3": "3 rounds", "10": "10 rounds", }; diff --git a/packages/shared/src/constants.ts b/packages/shared/src/constants.ts index 252bfff..a83bf2c 100644 --- a/packages/shared/src/constants.ts +++ b/packages/shared/src/constants.ts @@ -11,7 +11,7 @@ export const CEFR_LEVELS = ["A1", "A2", "B1", "B2", "C1", "C2"] as const; export const SUPPORTED_DECK_TYPES = ["grammar", "media"] as const; -export const DIFFICULTY_LEVELS = ["easy", "intermediate", "hard"] as const; +export const DIFFICULTY_LEVELS = ["easy", "medium", "hard"] as const; export type DifficultyLevel = (typeof DIFFICULTY_LEVELS)[number]; export const LOBBY_STATUSES = ["waiting", "in_progress", "finished"] as const;