-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
time travel isn't working when using the redux-batched-subscribe store enhancer #261
Comments
Hi. Could you please provide an example repo or jsfiddle? I'd look into it. |
@borisirota, thanks for the example. There's no problems with The solution is not to use const store = createStore(reducer, preloadedState, compose(
// applyMiddleware(thunk),
window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__() : noop => noop,
batchedSubscribe((notify) => notify())
)); So Note that there will be no need for that |
it works ! great ! thanks a lot !!! 👍 |
You're welcome. Added a note about it in Troubleshooting. |
Hi, any idea why the time travel isn't working when using the redux-batched-subscribe store enhancer ?
Thanks
The text was updated successfully, but these errors were encountered: