Troubleshooting
Last updated
Was this helpful?
Last updated
Was this helpful?
The of the is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us!
You can also ask questions on using the .
In short,
Reducers should never mutate state, they must return new objects, or React Redux won’t see the updates.
Make sure you are actually dispatching actions. For example, if you have an action creator like addTodo
, just calling the imported addTodo()
function by itself won’t do anything because it just returns an action, but does not dispatch it. You either need to call dispatch(addTodo())
(if using the hooks API) or props.addTodo()
(if using connect
+ mapDispatch
).
If you have context issues,
on the page.
Make sure you didn’t forget to wrap your root or some other ancestor component in .
Make sure you’re running the latest versions of React and React Redux.
If you’re using React for web, this usually means you have a . Follow the linked instructions to fix this.
ReactDOM emits this warning if useLayoutEffect
is used “on the server”. React Redux tries to get around the issue by detecting whether it is running within a browser context. Jest, by default, defines enough of the browser environment that React Redux thinks it’s running in a browser, causing these warnings.
You can prevent the warning by setting the @jest-environment
for a single test file:
Or by setting it globally:
See https://github.com/facebook/react/issues/14927#issuecomment-490426131