This repository was archived by the owner on Apr 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ function progressLoad() {
66 var tutorial = getState ( ) . tutorial ;
77 dispatch ( { type : types_1 . PROGRESS_LOAD , payload : { tutorial : tutorial } } ) ;
88 dispatch ( _progressPagePosition ( ) ) ;
9- dispatch ( actions_1 . testRun ( ) ) ;
109 } ;
1110}
1211exports . progressLoad = progressLoad ;
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ var core_coderoad_1 = require('core-coderoad');
44Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
55exports . default = core_coderoad_1 . configureStore ( {
66 reducer : reducers_1 . default ,
7- devMode : true ,
7+ devMode : false ,
88 throttle : { TEST_RUN : 800 } ,
99} ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export function progressLoad(): ReduxThunk.ThunkInterface {
88 const { tutorial} = getState ( ) ;
99 dispatch ( { type : PROGRESS_LOAD , payload : { tutorial } } ) ;
1010 dispatch ( _progressPagePosition ( ) ) ;
11- dispatch ( testRun ( ) ) ;
11+ // dispatch(testRun());
1212 } ;
1313}
1414
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import {configureStore} from 'core-coderoad';
33
44export default configureStore ( {
55 reducer,
6- devMode : true ,
6+ devMode : false ,
77 throttle : { TEST_RUN : 800 } ,
88} ) ;
You can’t perform that action at this time.
0 commit comments