aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 21:51:55 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 21:51:55 +0530
commit204a80708e6e0a2189de16438a3eb4b57ef84987 (patch)
treea8fa3afb58dbfec67bced4281837d33fd4e71413 /src/stores/AppStore.js
parentrefactor: move 'asarRecipesPath' into 'asar-helpers' (diff)
downloadferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.tar.gz
ferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.tar.zst
ferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.zip
refactor: split 'environment' into 'environment-remote' with only the remote module dependency
(might be a pre-requisite for the electron v14 upgrade)
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js6
1 files changed, 4 insertions, 2 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