Merge pull request #148 from 6ea86b96/remove-batching

Turns out that batchActions doesn't play nicely with thunk
This commit is contained in:
Jeremy Kauffman 2017-05-28 11:24:09 -04:00 committed by GitHub
commit a8667d18de

View file

@ -8,7 +8,6 @@ import SplashScreen from 'component/splash.js';
import SnackBar from 'component/snackBar';
import {AuthOverlay} from 'component/auth.js';
import { Provider } from 'react-redux';
import batchActions from 'util/batchActions'
import store from 'store.js';
import {
doChangePath,
@ -79,12 +78,10 @@ var init = function() {
window.sessionStorage.setItem('loaded', 'y'); //once we've made it here once per session, we don't need to show splash again
const actions = []
actions.push(doDaemonReady())
actions.push(doChangePath('/discover'))
actions.push(doFetchDaemonSettings())
actions.push(doFileList())
app.store.dispatch(batchActions(actions))
app.store.dispatch(doDaemonReady())
app.store.dispatch(doChangePath('/discover'))
app.store.dispatch(doFetchDaemonSettings())
app.store.dispatch(doFileList())
ReactDOM.render(<Provider store={store}><div>{ lbryio.enabled ? <AuthOverlay/> : '' }<App /><SnackBar /></div></Provider>, canvas)
}