aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/quickSwitch/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/quickSwitch/index.js')
-rw-r--r--src/features/quickSwitch/index.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/features/quickSwitch/index.js b/src/features/quickSwitch/index.js
index c57fad366..a16017219 100644
--- a/src/features/quickSwitch/index.js
+++ b/src/features/quickSwitch/index.js
@@ -1,15 +1,10 @@
1import { observable } from 'mobx'; 1import { state as ModalState } from './store';
2 2
3export { default as Component } from './Component'; 3export { default as Component } from './Component';
4const state = ModalState;
4 5
5const debug = require('debug')('Ferdi:feature:quickSwitch'); 6const debug = require('debug')('Ferdi:feature:quickSwitch');
6 7
7const defaultState = {
8 isModalVisible: false,
9};
10
11export const state = observable(defaultState);
12
13export default function initialize() { 8export default function initialize() {
14 debug('Initialize quickSwitch feature'); 9 debug('Initialize quickSwitch feature');
15 10