aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UIStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/UIStore.ts')
-rw-r--r--src/stores/UIStore.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stores/UIStore.ts b/src/stores/UIStore.ts
index e9e099ebc..c43c6d8c7 100644
--- a/src/stores/UIStore.ts
+++ b/src/stores/UIStore.ts
@@ -1,9 +1,9 @@
1import { action, observable, computed, reaction } from 'mobx'; 1import { action, observable, computed, reaction } from 'mobx';
2import { nativeTheme } from '@electron/remote'; 2import { nativeTheme } from '@electron/remote';
3 3
4import { Stores } from 'src/@types/stores.types'; 4import { Stores } from '../@types/stores.types';
5import { ApiInterface } from 'src/api'; 5import { ApiInterface } from '../api';
6import { Actions } from 'src/actions/lib/actions'; 6import { Actions } from '../actions/lib/actions';
7import { Theme, theme, ThemeType } from '../themes'; 7import { Theme, theme, ThemeType } from '../themes';
8import TypedStore from './lib/TypedStore'; 8import TypedStore from './lib/TypedStore';
9 9