aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/GlobalErrorStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/GlobalErrorStore.ts')
-rw-r--r--src/stores/GlobalErrorStore.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stores/GlobalErrorStore.ts b/src/stores/GlobalErrorStore.ts
index 74a43100b..1da81eaa3 100644
--- a/src/stores/GlobalErrorStore.ts
+++ b/src/stores/GlobalErrorStore.ts
@@ -1,8 +1,8 @@
1import { observable, action, makeObservable } from 'mobx'; 1import type { Response } from 'electron';
2import { Response } from 'electron'; 2import { action, makeObservable, observable } from 'mobx';
3import { Actions } from '../actions/lib/actions'; 3import type { Stores } from '../@types/stores.types';
4import { ApiInterface } from '../api'; 4import type { Actions } from '../actions/lib/actions';
5import { Stores } from '../@types/stores.types'; 5import type { ApiInterface } from '../api';
6import Request from './lib/Request'; 6import Request from './lib/Request';
7import TypedStore from './lib/TypedStore'; 7import TypedStore from './lib/TypedStore';
8 8