-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
Migration guide for 4.0 #3138
Comments
There really shouldn't be any migration guide, because the changes were primarily around TypeScript typings. Can you provide a project that reproduces the issue? Just saying that the error is happening doesn't tell us what's going on. |
@markerikson I'm calling |
As I said: please show the code that is involved here, preferably the entire application if possible. |
Please see #1568. If you've already started the dispatch process and are calling another action, it sounds like you have an impure reducer, which is an anti-pattern in Redux. |
After upgrading to 4.0 I'm getting a lot of errors about my
store.getState()
usage:You may not call store.getState() while the reducer is executing
. It was working without any issues in 3.7.2I don't see any migration guide. Please advise.
The text was updated successfully, but these errors were encountered: