aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/Profile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/Profile.ts')
-rw-r--r--packages/shared/src/stores/Profile.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/shared/src/stores/Profile.ts b/packages/shared/src/stores/Profile.ts
index 256c33e..49c5195 100644
--- a/packages/shared/src/stores/Profile.ts
+++ b/packages/shared/src/stores/Profile.ts
@@ -22,10 +22,11 @@ import { Instance, types } from 'mobx-state-tree';
22 22
23import ProfileSettings from './ProfileSettings'; 23import ProfileSettings from './ProfileSettings';
24 24
25const Profile = types.model('Profile', { 25const Profile = /* @__PURE__ */ (() =>
26 id: types.identifier, 26 types.model('Profile', {
27 settings: ProfileSettings, 27 id: types.identifier,
28}); 28 settings: ProfileSettings,
29 }))();
29 30
30/* 31/*
31 eslint-disable-next-line @typescript-eslint/no-redeclare -- 32 eslint-disable-next-line @typescript-eslint/no-redeclare --