aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
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,