aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/delayApp/index.js')
-rw-r--r--src/features/delayApp/index.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 51bd887a2..5ef01a47e 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -1,17 +1,12 @@
1import { autorun, observable, reaction } from 'mobx'; 1import { autorun, observable, reaction } from 'mobx';
2import moment from 'moment'; 2import moment from 'moment';
3import DelayAppComponent from './Component'; 3import DelayAppComponent from './Component';
4 4import { config } from './constants';
5import { DEFAULT_FEATURES_CONFIG } from '../../config'; 5import { DEFAULT_FEATURES_CONFIG } from '../../config';
6import { getUserWorkspacesRequest } from '../workspaces/api'; 6import { getUserWorkspacesRequest } from '../workspaces/api';
7 7
8const debug = require('debug')('Ferdi:feature:delayApp'); 8const debug = require('debug')('Ferdi:feature:delayApp');
9 9
10export const config = {
11 delayOffset: DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.delayOffset,
12 delayDuration: DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait,
13};
14
15export const state = observable({ 10export const state = observable({
16 isDelayAppScreenVisible: DEFAULT_FEATURES_CONFIG.needToWaitToProceed, 11 isDelayAppScreenVisible: DEFAULT_FEATURES_CONFIG.needToWaitToProceed,
17}); 12});