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
Redux implemented support for observables since v3.5.0. When I attach an observable to the store, I will receive the devtools state instead of my application state.
Will log something like Object {monitorState: Object, actionsById: Object, nextActionId: 1, stagedActionIds: Array[1], skippedActionIds: Array[0]…} when the store updates.
When I disable the redux devtools in Chrome, I get the expected state instance.
The text was updated successfully, but these errors were encountered:
Redux implemented support for observables since v3.5.0. When I attach an observable to the store, I will receive the devtools state instead of my application state.
A quick example:
Will log something like
Object {monitorState: Object, actionsById: Object, nextActionId: 1, stagedActionIds: Array[1], skippedActionIds: Array[0]…}
when the store updates.When I disable the redux devtools in Chrome, I get the expected state instance.
The text was updated successfully, but these errors were encountered: