aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/GlobalSettings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/GlobalSettings.ts')
-rw-r--r--packages/shared/src/stores/GlobalSettings.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/shared/src/stores/GlobalSettings.ts b/packages/shared/src/stores/GlobalSettings.ts
index 1c6d7f3..7a2c334 100644
--- a/packages/shared/src/stores/GlobalSettings.ts
+++ b/packages/shared/src/stores/GlobalSettings.ts
@@ -22,12 +22,15 @@ import { Instance, types, SnapshotIn, SnapshotOut } from 'mobx-state-tree';
22 22
23import { ThemeSource } from '../schemas'; 23import { ThemeSource } from '../schemas';
24 24
25import Service from './Service';
26
25const GlobalSettings = /* @__PURE__ */ (() => 27const GlobalSettings = /* @__PURE__ */ (() =>
26 types.model('GlobalSettings', { 28 types.model('GlobalSettings', {
27 themeSource: types.optional( 29 themeSource: types.optional(
28 types.enumeration(ThemeSource.options), 30 types.enumeration(ThemeSource.options),
29 'system', 31 'system',
30 ), 32 ),
33 selectedService: types.safeReference(Service),
31 }))(); 34 }))();
32 35
33/* 36/*