Browse Source

remove home screen timeout

pull/8/head
Tim Glasgow 2 years ago
parent
commit
1b10a176ba
  1. 2
      squarenotsquare/src/redux/actions/SystemActions.js

2
squarenotsquare/src/redux/actions/SystemActions.js

@ -6,7 +6,7 @@ export function appInit() {
return async (dispatch) => { return async (dispatch) => {
await DbAPI.initDB(); await DbAPI.initDB();
dispatch(onInit()); dispatch(onInit());
setTimeout(() => squareNav('Home'), 1000); squareNav('Home');
} }
} }

Loading…
Cancel
Save