From 1bf77ffde5051a13e127845a122e50cf03dc251c Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 14 Aug 2025 16:58:35 +0200 Subject: [PATCH] frontend: standardize theme key naming in ThemeService and index.html --- .../shared-meet-components/src/lib/services/theme.service.ts | 2 +- frontend/src/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/projects/shared-meet-components/src/lib/services/theme.service.ts b/frontend/projects/shared-meet-components/src/lib/services/theme.service.ts index 9c59ce8..cb83841 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/theme.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/theme.service.ts @@ -7,7 +7,7 @@ export type Theme = 'light' | 'dark'; providedIn: 'root' }) export class ThemeService { - private readonly THEME_KEY = 'ov-meet-theme'; + private readonly THEME_KEY = 'ovMeet-theme'; private readonly _currentTheme = signal('light'); // Computed signals for reactivity diff --git a/frontend/src/index.html b/frontend/src/index.html index c779755..4e5a567 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -14,7 +14,7 @@