aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/SettingsStore.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-03 07:09:05 +0530
committerLibravatar GitHub <noreply@github.com>2021-07-03 07:09:05 +0530
commit83676cec9ce8e41d5e88e7d06a17dd8194e3593e (patch)
treea73eb8b64a20530ee3c44f1901c9daa2a069f12a /src/stores/SettingsStore.js
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.tar.gz
ferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.tar.zst
ferdium-app-83676cec9ce8e41d5e88e7d06a17dd8194e3593e.zip
Minor refactoring to move all runtime configs from 'config.js' into 'environment.js'. (#1588)
Diffstat (limited to 'src/stores/SettingsStore.js')
-rw-r--r--src/stores/SettingsStore.js4
1 files changed, 2 insertions, 2 deletions
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';