aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UIStore.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/stores/UIStore.ts
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/stores/UIStore.ts')
-rw-r--r--src/stores/UIStore.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stores/UIStore.ts b/src/stores/UIStore.ts
index a3330c2e6..614c16763 100644
--- a/src/stores/UIStore.ts
+++ b/src/stores/UIStore.ts
@@ -1,10 +1,10 @@
1import { action, observable, computed, reaction, makeObservable } from 'mobx';
2import { nativeTheme } from '@electron/remote'; 1import { nativeTheme } from '@electron/remote';
2import { action, computed, makeObservable, observable, reaction } from 'mobx';
3 3
4import { Stores } from '../@types/stores.types'; 4import type { Stores } from '../@types/stores.types';
5import { ApiInterface } from '../api'; 5import type { Actions } from '../actions/lib/actions';
6import { Actions } from '../actions/lib/actions'; 6import type { ApiInterface } from '../api';
7import { Theme, theme, ThemeType } from '../themes'; 7import { type Theme, ThemeType, theme } from '../themes';
8import TypedStore from './lib/TypedStore'; 8import TypedStore from './lib/TypedStore';
9 9
10export default class UIStore extends TypedStore { 10export default class UIStore extends TypedStore {