aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
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
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')
-rw-r--r--src/stores/AppStore.ts4
-rw-r--r--src/stores/RecipesStore.ts2
-rw-r--r--src/stores/ServicesStore.ts2
3 files changed, 4 insertions, 4 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
diff --git a/src/stores/RecipesStore.ts b/src/stores/RecipesStore.ts
index 00a2bb737..6bd4ab382 100644
--- a/src/stores/RecipesStore.ts
+++ b/src/stores/RecipesStore.ts
@@ -8,7 +8,7 @@ import { Actions } from 'src/actions/lib/actions';
8import Recipe from 'src/models/Recipe'; 8import Recipe from 'src/models/Recipe';
9import CachedRequest from './lib/CachedRequest'; 9import CachedRequest from './lib/CachedRequest';
10import Request from './lib/Request'; 10import Request from './lib/Request';
11import { matchRoute } from '../helpers/routing-helpers'; 11import matchRoute from '../helpers/routing-helpers';
12import { asarRecipesPath } from '../helpers/asar-helpers'; 12import { asarRecipesPath } from '../helpers/asar-helpers';
13import TypedStore from './lib/TypedStore'; 13import TypedStore from './lib/TypedStore';
14 14
diff --git a/src/stores/ServicesStore.ts b/src/stores/ServicesStore.ts
index 0164d092a..e690b3791 100644
--- a/src/stores/ServicesStore.ts
+++ b/src/stores/ServicesStore.ts
@@ -10,7 +10,7 @@ import { ApiInterface } from 'src/api';
10import { Actions } from 'src/actions/lib/actions'; 10import { Actions } from 'src/actions/lib/actions';
11import Request from './lib/Request'; 11import Request from './lib/Request';
12import CachedRequest from './lib/CachedRequest'; 12import CachedRequest from './lib/CachedRequest';
13import { matchRoute } from '../helpers/routing-helpers'; 13import matchRoute from '../helpers/routing-helpers';
14import { isInTimeframe } from '../helpers/schedule-helpers'; 14import { isInTimeframe } from '../helpers/schedule-helpers';
15import { 15import {
16 getRecipeDirectory, 16 getRecipeDirectory,