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
I've occasionally seen people passing two separate store enhancers to createStore() (as seen in this SO question ). This is always an error, and it seems like we could add an additional sanity check to createStore() - probably just checking to see if we have 3 args, and if the second and third are both functions. (I would think we can safely assume that the preloadedState argument shouldn't be a function.) It's a rarer problem, but it's preventable.