aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/ProfileSettings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/ProfileSettings.ts')
-rw-r--r--packages/shared/src/stores/ProfileSettings.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/shared/src/stores/ProfileSettings.ts b/packages/shared/src/stores/ProfileSettings.ts
index 9f2b27c..2ce5d73 100644
--- a/packages/shared/src/stores/ProfileSettings.ts
+++ b/packages/shared/src/stores/ProfileSettings.ts
@@ -20,9 +20,10 @@
20 20
21import { Instance, types, SnapshotIn, SnapshotOut } from 'mobx-state-tree'; 21import { Instance, types, SnapshotIn, SnapshotOut } from 'mobx-state-tree';
22 22
23const ProfileSettings = types.model('ProfileSettings', { 23const ProfileSettings = /* @__PURE__ */ (() =>
24 name: types.string, 24 types.model('ProfileSettings', {
25}); 25 name: types.string,
26 }))();
26 27
27/* 28/*
28 eslint-disable-next-line @typescript-eslint/no-redeclare -- 29 eslint-disable-next-line @typescript-eslint/no-redeclare --