Joanne Yae

Results 2 comments of Joanne Yae

If you use 'combineReducers' from 'redux-immutable' as opposed to 'redux', it will throw that error because, in order to get the 'auth' state, it needs to be retrieved via 'store.getState().get('auth')'...

Ah, nice, thanks! I was able to work around it by setting a separate user state in the store (instead of trying to use the user property in auth.user), and...