Troubleshooting
Last updated
Was this helpful?
Last updated
Was this helpful?
Make sure to check out first.
This warning is shown when using react 15.5.*. Basically, now it's just a warning, but in react16 the application might break. the PropTypes should now be imported from 'prop-types' package, and not from the react package.
Update to the latest version of react-redux.
See the link above. In short,
Reducers should never mutate state, they must return new objects, or React Redux won’t see the updates.
Make sure you either bind action creators with the mapDispatchToProps
argument to connect()
or with the bindActionCreators()
method, or that you manually call dispatch()
. Just calling your MyActionCreators.addTodo()
function won’t work because it just returns an action, but does not dispatch it.
If you’re using React Router 0.13, you might . The solution is simple: whenever you use <RouteHandler>
or the Handler
provided by Router.run
, pass the router state to it.
Root view:
Nested view:
Conveniently, this gives your components access to the router state! You can also upgrade to React Router 1.0 which shouldn’t have this problem. (Let us know if it does!)
The best solution to this is to make sure that your components are pure and pass any external state to them via props. This will ensure that your views do not re-render unless they actually need to re-render and will greatly speed up your application.
If that’s not practical for whatever reason (for example, if you’re using a library that depends heavily on React context), you may pass the pure: false
option to connect()
:
This will remove the assumption that TodoApp
is pure and cause it to update whenever its parent component renders. Note that this will make your application less performant, so only do this if you have no other option.
If you have context issues,
Make sure you’re running the latest versions of React and React Redux.
If your views depend on global state or , you might find that views decorated with connect()
will fail to update.
This is because connect()
implements by default, assuming that your component will produce the same results given the same props and state. This is a similar concept to React’s .
on the page.
Make sure you didn’t forget to wrap your root or some other ancestor component in .
If you’re using React for web, this usually means you have a . Follow the linked instructions to fix this.