summaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/FeaturesStore.ts')
-rw-r--r--src/stores/FeaturesStore.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/stores/FeaturesStore.ts b/src/stores/FeaturesStore.ts
index 8584b6060..6167d0e22 100644
--- a/src/stores/FeaturesStore.ts
+++ b/src/stores/FeaturesStore.ts
@@ -5,18 +5,18 @@ import {
5 observable, 5 observable,
6 runInAction, 6 runInAction,
7} from 'mobx'; 7} from 'mobx';
8import { Stores } from '../@types/stores.types'; 8import type { Stores } from '../@types/stores.types';
9import { ApiInterface } from '../api'; 9import type { Actions } from '../actions/lib/actions';
10import { Actions } from '../actions/lib/actions'; 10import type { ApiInterface } from '../api';
11import CachedRequest from './lib/CachedRequest'; 11import appearance from '../features/appearance';
12import serviceProxy from '../features/serviceProxy';
13import basicAuth from '../features/basicAuth'; 12import basicAuth from '../features/basicAuth';
14import workspaces from '../features/workspaces';
15import quickSwitch from '../features/quickSwitch';
16import publishDebugInfo from '../features/publishDebugInfo';
17import communityRecipes from '../features/communityRecipes'; 13import communityRecipes from '../features/communityRecipes';
14import publishDebugInfo from '../features/publishDebugInfo';
15import quickSwitch from '../features/quickSwitch';
16import serviceProxy from '../features/serviceProxy';
18import todos from '../features/todos'; 17import todos from '../features/todos';
19import appearance from '../features/appearance'; 18import workspaces from '../features/workspaces';
19import CachedRequest from './lib/CachedRequest';
20import TypedStore from './lib/TypedStore'; 20import TypedStore from './lib/TypedStore';
21 21
22export default class FeaturesStore extends TypedStore { 22export default class FeaturesStore extends TypedStore {