aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js6
-rw-r--r--src/stores/ServicesStore.js2
-rw-r--r--src/stores/UserStore.js2
3 files changed, 6 insertions, 4 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index cb17447c0..83e6a899b 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -20,12 +20,14 @@ import { CHECK_INTERVAL } from '../config';
20import { 20import {
21 DEFAULT_APP_SETTINGS, 21 DEFAULT_APP_SETTINGS,
22 isMac, 22 isMac,
23 ferdiVersion,
24 electronVersion, 23 electronVersion,
25 osRelease, 24 osRelease,
25} from '../environment';
26import {
27 ferdiVersion,
26 userDataPath, 28 userDataPath,
27 ferdiLocale, 29 ferdiLocale,
28} from '../environment'; 30} from '../environment-remote';
29import locales from '../i18n/translations'; 31import locales from '../i18n/translations';
30import { getLocale } from '../helpers/i18n-helpers'; 32import { getLocale } from '../helpers/i18n-helpers';
31 33
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 2a4b0511c..ce6675866 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -17,7 +17,7 @@ import {
17import { workspaceStore } from '../features/workspaces'; 17import { workspaceStore } from '../features/workspaces';
18import { KEEP_WS_LOADED_USID } from '../config'; 18import { KEEP_WS_LOADED_USID } from '../config';
19import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 19import { SPELLCHECKER_LOCALES } from '../i18n/languages';
20import { ferdiVersion } from '../environment'; 20import { ferdiVersion } from '../environment-remote';
21 21
22const debug = require('debug')('Ferdi:ServiceStore'); 22const debug = require('debug')('Ferdi:ServiceStore');
23 23
diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js
index 77dd28d7c..9f222d2d3 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -5,7 +5,7 @@ import localStorage from 'mobx-localstorage';
5import { ipcRenderer } from 'electron'; 5import { ipcRenderer } from 'electron';
6 6
7import { TODOS_PARTITION_ID } from '../config'; 7import { TODOS_PARTITION_ID } from '../config';
8import { isDevMode } from '../environment'; 8import { isDevMode } from '../environment-remote';
9import Store from './lib/Store'; 9import Store from './lib/Store';
10import Request from './lib/Request'; 10import Request from './lib/Request';
11import CachedRequest from './lib/CachedRequest'; 11import CachedRequest from './lib/CachedRequest';