From 6d98bf8870bbe3686db067043a6bc7957f0ea641 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Mon, 28 Jul 2025 02:51:54 +0200 Subject: [PATCH] Ensure app theme "id" property exists The app themes do not have the "id" prop by default. --- src/modules/theme/services/AppThemes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/theme/services/AppThemes.ts b/src/modules/theme/services/AppThemes.ts index a6c375a5..638e8887 100644 --- a/src/modules/theme/services/AppThemes.ts +++ b/src/modules/theme/services/AppThemes.ts @@ -29,6 +29,8 @@ export const getTheme = (id: AppThemes, customThemes: Record = return { // @ts-ignore - custom themes do not have a "getName" function getName: () => id, + // @ts-ignore - app themes do not have the "id" prop by default + id, ...theme, }; } catch (e) {