aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js3
-rw-r--r--src/stores/SettingsStore.js3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 83e6a899b..3d9d2b551 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -16,9 +16,8 @@ import { readJsonSync } from 'fs-extra';
16 16
17import Store from './lib/Store'; 17import Store from './lib/Store';
18import Request from './lib/Request'; 18import Request from './lib/Request';
19import { CHECK_INTERVAL } from '../config'; 19import { CHECK_INTERVAL, DEFAULT_APP_SETTINGS } from '../config';
20import { 20import {
21 DEFAULT_APP_SETTINGS,
22 isMac, 21 isMac,
23 electronVersion, 22 electronVersion,
24 osRelease, 23 osRelease,
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index 4b203101a..ec80fee7c 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -2,8 +2,7 @@ import { ipcRenderer } from 'electron';
2import { getCurrentWindow } from '@electron/remote'; 2import { getCurrentWindow } from '@electron/remote';
3import { action, computed, observable, reaction } from 'mobx'; 3import { action, computed, observable, reaction } from 'mobx';
4import localStorage from 'mobx-localstorage'; 4import localStorage from 'mobx-localstorage';
5import { FILE_SYSTEM_SETTINGS_TYPES, LOCAL_SERVER } from '../config'; 5import { DEFAULT_APP_SETTINGS, FILE_SYSTEM_SETTINGS_TYPES, LOCAL_SERVER } from '../config';
6import { DEFAULT_APP_SETTINGS } from '../environment';
7import { hash } from '../helpers/password-helpers'; 6import { hash } from '../helpers/password-helpers';
8import Request from './lib/Request'; 7import Request from './lib/Request';
9import Store from './lib/Store'; 8import Store from './lib/Store';