aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/RequestStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/RequestStore.ts')
-rw-r--r--src/stores/RequestStore.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stores/RequestStore.ts b/src/stores/RequestStore.ts
index 807f2d126..bad9f39ea 100644
--- a/src/stores/RequestStore.ts
+++ b/src/stores/RequestStore.ts
@@ -2,11 +2,11 @@ import { ipcRenderer } from 'electron';
2import { action, computed, makeObservable, observable } from 'mobx'; 2import { action, computed, makeObservable, observable } from 'mobx';
3import ms from 'ms'; 3import ms from 'ms';
4 4
5import { Actions } from '../actions/lib/actions'; 5import type { Stores } from '../@types/stores.types';
6import { ApiInterface } from '../api'; 6import type { Actions } from '../actions/lib/actions';
7import { Stores } from '../@types/stores.types'; 7import type { ApiInterface } from '../api';
8import CachedRequest from './lib/CachedRequest';
9import { LOCAL_HOSTNAME, LOCAL_PORT } from '../config'; 8import { LOCAL_HOSTNAME, LOCAL_PORT } from '../config';
9import type CachedRequest from './lib/CachedRequest';
10 10
11import TypedStore from './lib/TypedStore'; 11import TypedStore from './lib/TypedStore';
12 12