You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
debugging issues with combineReducers etc. can be tricky because it's not immediately obvious where the problematic reducer was created. I need to figure out the best way to ease debugging in this case. One idea is to store a stack trace when combineReducers etc. is called (as long as process.env.NODE_ENV !== 'production', and if applying the reducer throws an error, include the creation stack trace in that error somehow.
The text was updated successfully, but these errors were encountered:
debugging issues with
combineReducers
etc. can be tricky because it's not immediately obvious where the problematic reducer was created. I need to figure out the best way to ease debugging in this case. One idea is to store a stack trace whencombineReducers
etc. is called (as long asprocess.env.NODE_ENV !== 'production'
, and if applying the reducer throws an error, include the creation stack trace in that error somehow.The text was updated successfully, but these errors were encountered: