aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js4
-rw-r--r--src/stores/RecipesStore.js2
-rw-r--r--src/stores/SettingsStore.js4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 4af802460..dd4ab3629 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -13,8 +13,8 @@ import { readJsonSync } from 'fs-extra';
13 13
14import Store from './lib/Store'; 14import Store from './lib/Store';
15import Request from './lib/Request'; 15import Request from './lib/Request';
16import { CHECK_INTERVAL, DEFAULT_APP_SETTINGS } from '../config'; 16import { CHECK_INTERVAL } from '../config';
17import { isMac } from '../environment'; 17import { DEFAULT_APP_SETTINGS, isMac } from '../environment';
18import locales from '../i18n/translations'; 18import locales from '../i18n/translations';
19import { onVisibilityChange } from '../helpers/visibility-helper'; 19import { onVisibilityChange } from '../helpers/visibility-helper';
20import { getLocale } from '../helpers/i18n-helpers'; 20import { getLocale } from '../helpers/i18n-helpers';
diff --git a/src/stores/RecipesStore.js b/src/stores/RecipesStore.js
index 965aa3a0a..b49fb72d9 100644
--- a/src/stores/RecipesStore.js
+++ b/src/stores/RecipesStore.js
@@ -7,7 +7,7 @@ import Store from './lib/Store';
7import CachedRequest from './lib/CachedRequest'; 7import CachedRequest from './lib/CachedRequest';
8import Request from './lib/Request'; 8import Request from './lib/Request';
9import { matchRoute } from '../helpers/routing-helpers'; 9import { matchRoute } from '../helpers/routing-helpers';
10import { RECIPES_PATH } from '../config'; 10import { RECIPES_PATH } from '../environment';
11 11
12const debug = require('debug')('Ferdi:RecipeStore'); 12const debug = require('debug')('Ferdi:RecipeStore');
13 13
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index b433efd45..292242552 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -5,9 +5,9 @@ import {
5} from 'mobx'; 5} from 'mobx';
6import localStorage from 'mobx-localstorage'; 6import localStorage from 'mobx-localstorage';
7import { 7import {
8 DEFAULT_APP_SETTINGS, FILE_SYSTEM_SETTINGS_TYPES, LOCAL_SERVER, SEARCH_ENGINE_DDG, 8 FILE_SYSTEM_SETTINGS_TYPES, LOCAL_SERVER, SEARCH_ENGINE_DDG,
9} from '../config'; 9} from '../config';
10import { API } from '../environment'; 10import { API, DEFAULT_APP_SETTINGS } from '../environment';
11import { getLocale } from '../helpers/i18n-helpers'; 11import { getLocale } from '../helpers/i18n-helpers';
12import { hash } from '../helpers/password-helpers'; 12import { hash } from '../helpers/password-helpers';
13import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 13import { SPELLCHECKER_LOCALES } from '../i18n/languages';