aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/controllers/config.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-01-04 22:16:09 +0530
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:51:48 +0100
commit649c1ed37ac74765fb7572fa3f703c94827042f4 (patch)
treec00d13e58cbe1df0a4645b7905bccbab3eb9ff92 /packages/main/src/controllers/config.ts
parentIncorporate 'eslint' (fixes #3) (diff)
downloadsophie-649c1ed37ac74765fb7572fa3f703c94827042f4.tar.gz
sophie-649c1ed37ac74765fb7572fa3f703c94827042f4.tar.zst
sophie-649c1ed37ac74765fb7572fa3f703c94827042f4.zip
New configurations based on review comments (WIP)
Signed-off-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'packages/main/src/controllers/config.ts')
-rw-r--r--packages/main/src/controllers/config.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/main/src/controllers/config.ts b/packages/main/src/controllers/config.ts
index 971f151..deaeac2 100644
--- a/packages/main/src/controllers/config.ts
+++ b/packages/main/src/controllers/config.ts
@@ -24,8 +24,8 @@ import { applySnapshot, getSnapshot, onSnapshot } from 'mobx-state-tree';
24 24
25import type { ConfigPersistenceService } from '../services/ConfigPersistenceService.js'; 25import type { ConfigPersistenceService } from '../services/ConfigPersistenceService.js';
26import type { Config, ConfigSnapshotOut } from '../stores/Config.js'; 26import type { Config, ConfigSnapshotOut } from '../stores/Config.js';
27import { Disposer } from '../utils/disposer.js'; 27import { Disposer } from '../utils/disposer';
28import { getLogger } from '../utils/logging.js'; 28import { getLogger } from '../utils/logging';
29 29
30const DEFAULT_CONFIG_DEBOUNCE_TIME = ms('1s'); 30const DEFAULT_CONFIG_DEBOUNCE_TIME = ms('1s');
31 31