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.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/shared/src/stores/SharedStore.ts b/packages/shared/src/stores/SharedStore.ts
index ffa387f..e6e2cad 100644
--- a/packages/shared/src/stores/SharedStore.ts
+++ b/packages/shared/src/stores/SharedStore.ts
@@ -28,11 +28,13 @@ import {
28 28
29import { config } from './Config'; 29import { config } from './Config';
30import { runtimeService } from './RuntimeService'; 30import { runtimeService } from './RuntimeService';
31import { service } from './Service';
31 32
32export const sharedStore = types.model('SharedStore', { 33export const sharedStore = types.model('SharedStore', {
33 config: types.optional(config, {}), 34 config: types.optional(config, {}),
34 shouldUseDarkColors: false,
35 runtimeServices: types.map(runtimeService), 35 runtimeServices: types.map(runtimeService),
36 selectedService: types.safeReference(service),
37 shouldUseDarkColors: false,
36}); 38});
37 39
38export interface SharedStore extends Instance<typeof sharedStore> {} 40export interface SharedStore extends Instance<typeof sharedStore> {}