-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redux Dev Tools Extension version 2.16.0 clashing my working code #590
Comments
Getting the same issue |
Getting same error, exact same configs of @jithinkmatthew, removing plugin seems only fix for me at the moment. |
I've also been investigating this. In my case at least, the error only seems to occur when dispatching an action immediately after creating the store. If I don't do that, actions dispatched later seem to be ok. I've narrowed the cause down to this line:
which was altered 9 hours ago in commit 5f94fc0. So this is only triggered when |
Same as #588 |
Ah yes #588 (comment) beat me to it! |
Has more information, but that issue is really noisy with the +1s all over the place. |
Recommended simplest action: Disable extension and subscribe to this issue and issue 588 and 587 to know when you can re-enable. Otherwise, follow instructions in issue 588 to disable 2.16 and manually download the 2.15.5 zip extension and manually add it to Chrome if you just can't wait. #588 (comment) |
Revert back to the previous version v2.15.5
Hope it will help :) |
|
Fixed the issue for me, the application renders without problems now. Thanks for the quick update! |
hmm, still the same issue for me:
|
@nitimmerman That's #589 |
Sorry, I left a comment that was useless, I have deleted it. |
@nitimmerman that's fixed in last version, refer to #589. |
thanks! I've already commented in #589 as well |
My code is working fine when the extension installed is version 2.15.3 or i removed the redux dev tools extension.
The error msg as below:
Error: You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.
Here is my store.js:
The text was updated successfully, but these errors were encountered: