aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/ServiceSettings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/ServiceSettings.ts')
-rw-r--r--packages/shared/src/stores/ServiceSettings.ts13
1 files changed, 7 insertions, 6 deletions
diff --git a/packages/shared/src/stores/ServiceSettings.ts b/packages/shared/src/stores/ServiceSettings.ts
index 6ba1dfa..a5811f5 100644
--- a/packages/shared/src/stores/ServiceSettings.ts
+++ b/packages/shared/src/stores/ServiceSettings.ts
@@ -22,12 +22,13 @@ import { Instance, types, SnapshotIn, SnapshotOut } from 'mobx-state-tree';
22 22
23import Profile from './Profile'; 23import Profile from './Profile';
24 24
25const ServiceSettings = types.model('ServiceSettings', { 25const ServiceSettings = /* @__PURE__ */ (() =>
26 name: types.string, 26 types.model('ServiceSettings', {
27 profile: types.reference(Profile), 27 name: types.string,
28 // TODO: Remove this once recipes are added. 28 profile: types.reference(Profile),
29 url: types.string, 29 // TODO: Remove this once recipes are added.
30}); 30 url: types.string,
31 }))();
31 32
32/* 33/*
33 eslint-disable-next-line @typescript-eslint/no-redeclare -- 34 eslint-disable-next-line @typescript-eslint/no-redeclare --