aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-02-15 20:18:10 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-02-15 20:18:10 +0100
commit048ca74c3b2f5b39995dd930ad396fbafd752a1e (patch)
tree74bc86a8b5d53ebeefa4bd5cf0e54fb512b82f41
parentremove debug logs (diff)
downloadferdium-app-048ca74c3b2f5b39995dd930ad396fbafd752a1e.tar.gz
ferdium-app-048ca74c3b2f5b39995dd930ad396fbafd752a1e.tar.zst
ferdium-app-048ca74c3b2f5b39995dd930ad396fbafd752a1e.zip
fix linting issues
-rw-r--r--src/api/server/LocalApi.js1
-rw-r--r--src/stores/SettingsStore.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/api/server/LocalApi.js b/src/api/server/LocalApi.js
index 1988f713c..aa3a7d655 100644
--- a/src/api/server/LocalApi.js
+++ b/src/api/server/LocalApi.js
@@ -1,5 +1,4 @@
1import { remote } from 'electron'; 1import { remote } from 'electron';
2import localStorage from 'mobx-localstorage';
3import du from 'du'; 2import du from 'du';
4 3
5import { getServicePartitionsDirectory } from '../../helpers/service-helpers.js'; 4import { getServicePartitionsDirectory } from '../../helpers/service-helpers.js';
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index f6f340c2b..9dc8d82d2 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -1,5 +1,5 @@
1import { ipcRenderer } from 'electron'; 1import { ipcRenderer } from 'electron';
2import { action, computed, observable, extendObservable } from 'mobx'; 2import { action, computed, observable } from 'mobx';
3import localStorage from 'mobx-localstorage'; 3import localStorage from 'mobx-localstorage';
4 4
5import Store from './lib/Store'; 5import Store from './lib/Store';