aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/stores/MainStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/stores/MainStore.ts')
-rw-r--r--packages/main/src/stores/MainStore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/main/src/stores/MainStore.ts b/packages/main/src/stores/MainStore.ts
index 5a60585..9368b4d 100644
--- a/packages/main/src/stores/MainStore.ts
+++ b/packages/main/src/stores/MainStore.ts
@@ -42,7 +42,7 @@ export const mainStore = types.model('MainStore', {
42 }, 42 },
43 setShouldUseDarkColors(shouldUseDarkColors: boolean): void { 43 setShouldUseDarkColors(shouldUseDarkColors: boolean): void {
44 self.shared.shouldUseDarkColors = shouldUseDarkColors; 44 self.shared.shouldUseDarkColors = shouldUseDarkColors;
45 } 45 },
46})); 46}));
47 47
48export interface MainStore extends Instance<typeof mainStore> {} 48export interface MainStore extends Instance<typeof mainStore> {}