aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores')
-rw-r--r--packages/shared/src/stores/Config.ts2
-rw-r--r--packages/shared/src/stores/SharedStore.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/shared/src/stores/Config.ts b/packages/shared/src/stores/Config.ts
index 4b17d3c..432945c 100644
--- a/packages/shared/src/stores/Config.ts
+++ b/packages/shared/src/stores/Config.ts
@@ -25,7 +25,7 @@ import {
25 SnapshotOut, 25 SnapshotOut,
26} from 'mobx-state-tree'; 26} from 'mobx-state-tree';
27 27
28import { themeSource } from '../schemas.js'; 28import { themeSource } from '../schemas';
29 29
30export const config = types.model('Config', { 30export const config = types.model('Config', {
31 themeSource: types.optional(types.enumeration(themeSource.options), 'system'), 31 themeSource: types.optional(types.enumeration(themeSource.options), 'system'),
diff --git a/packages/shared/src/stores/SharedStore.ts b/packages/shared/src/stores/SharedStore.ts
index 8aefcdb..c6c3ddc 100644
--- a/packages/shared/src/stores/SharedStore.ts
+++ b/packages/shared/src/stores/SharedStore.ts
@@ -26,7 +26,7 @@ import {
26 SnapshotOut, 26 SnapshotOut,
27} from 'mobx-state-tree'; 27} from 'mobx-state-tree';
28 28
29import { config } from './Config.js'; 29import { config } from './Config';
30 30
31export const sharedStore = types.model('SharedStore', { 31export const sharedStore = types.model('SharedStore', {
32 config: types.optional(config, {}), 32 config: types.optional(config, {}),