aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index afb370341..dc2cb0dbd 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -1,4 +1,4 @@
1import { shell, remote } from 'electron'; 1import { shell } from 'electron';
2import { 2import {
3 action, 3 action,
4 reaction, 4 reaction,
@@ -7,6 +7,7 @@ import {
7} from 'mobx'; 7} from 'mobx';
8import { debounce, remove } from 'lodash'; 8import { debounce, remove } from 'lodash';
9import ms from 'ms'; 9import ms from 'ms';
10import { app } from '@electron/remote';
10import fs from 'fs-extra'; 11import fs from 'fs-extra';
11import path from 'path'; 12import path from 'path';
12 13
@@ -25,8 +26,6 @@ import { SPELLCHECKER_LOCALES } from '../i18n/languages';
25 26
26const debug = require('debug')('Ferdi:ServiceStore'); 27const debug = require('debug')('Ferdi:ServiceStore');
27 28
28const { app } = remote;
29
30export default class ServicesStore extends Store { 29export default class ServicesStore extends Store {
31 @observable allServicesRequest = new CachedRequest(this.api.services, 'all'); 30 @observable allServicesRequest = new CachedRequest(this.api.services, 'all');
32 31