aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/SharedStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/SharedStore.ts')
-rw-r--r--packages/shared/src/stores/SharedStore.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/shared/src/stores/SharedStore.ts b/packages/shared/src/stores/SharedStore.ts
index e6e2cad..a04f4bf 100644
--- a/packages/shared/src/stores/SharedStore.ts
+++ b/packages/shared/src/stores/SharedStore.ts
@@ -26,13 +26,14 @@ import {
26 SnapshotOut, 26 SnapshotOut,
27} from 'mobx-state-tree'; 27} from 'mobx-state-tree';
28 28
29import { config } from './Config'; 29import { globalSettings } from './GlobalSettings';
30import { runtimeService } from './RuntimeService'; 30import { profile } from './Profile';
31import { service } from './Service'; 31import { service } from './Service';
32 32
33export const sharedStore = types.model('SharedStore', { 33export const sharedStore = types.model('SharedStore', {
34 config: types.optional(config, {}), 34 settings: types.optional(globalSettings, {}),
35 runtimeServices: types.map(runtimeService), 35 profiles: types.array(profile),
36 services: types.array(service),
36 selectedService: types.safeReference(service), 37 selectedService: types.safeReference(service),
37 shouldUseDarkColors: false, 38 shouldUseDarkColors: false,
38}); 39});