aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-02 05:13:38 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-02 06:19:03 +0530
commitd16cc1f2c59818e53f28b4d6b4d27250331f15d7 (patch)
tree57bf4d149ec2be88dd0d351142998ce96db0d659 /src/stores/AppStore.ts
parentchore: correctly export/import ui elements (diff)
downloadferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.gz
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.zst
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.zip
Use default exports instead of named exports
Diffstat (limited to 'src/stores/AppStore.ts')
-rw-r--r--src/stores/AppStore.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index 8c8454116..b2adb0f02 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -27,7 +27,7 @@ import {
27 userDataPath, 27 userDataPath,
28 ferdiumLocale, 28 ferdiumLocale,
29} from '../environment-remote'; 29} from '../environment-remote';
30import { generatedTranslations } from '../i18n/translations'; 30import generatedTranslations from '../i18n/translations';
31import { getLocale } from '../helpers/i18n-helpers'; 31import { getLocale } from '../helpers/i18n-helpers';
32 32
33import { 33import {
@@ -35,7 +35,7 @@ import {
35 removeServicePartitionDirectory, 35 removeServicePartitionDirectory,
36} from '../helpers/service-helpers'; 36} from '../helpers/service-helpers';
37import { openExternalUrl } from '../helpers/url-helpers'; 37import { openExternalUrl } from '../helpers/url-helpers';
38import { sleep } from '../helpers/async-helpers'; 38import sleep from '../helpers/async-helpers';
39 39
40const debug = require('../preload-safe-debug')('Ferdium:AppStore'); 40const debug = require('../preload-safe-debug')('Ferdium:AppStore');
41 41