From 23eeb9a8020d934136ddf263b4a770c93289c989 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sun, 30 Mar 2025 21:29:22 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- backend/src/controllers/themes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/controllers/themes.ts b/backend/src/controllers/themes.ts index e772087a..b34d0c80 100644 --- a/backend/src/controllers/themes.ts +++ b/backend/src/controllers/themes.ts @@ -7,7 +7,7 @@ interface Translations { } export function getThemesHandler(req: Request, res: Response): void { - const language = (req.query.language as string || 'nl').toLowerCase(); + const language = ((req.query.language as string) || 'nl').toLowerCase(); const translations = loadTranslations(language); const themeList = themes.map((theme) => ({ key: theme.title,