sync up popup selectedTheme to storage

This commit is contained in:
SethBurkart123
2024-04-05 08:43:33 +11:00
parent 38e92751ed
commit 38c31b88e6
3 changed files with 26 additions and 15 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
export interface SettingsState {
notificationCollector: boolean;
theme: string;
selectedTheme: string;
lessonAlerts: boolean;
telemetry: boolean;
animatedBackground: boolean;
@@ -60,5 +60,5 @@ export interface MainConfig {
shortcuts: Shortcut[];
subjectfilters: Record<string, any>;
transparencyEffects: boolean;
theme: string;
selectedTheme: string;
}