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 am using immutable.js and also I am doing an isomorphic render of the app.
An interesting point is that the store that is showing data is the only one I can serialising back to the client. All the other stores I have an empty dehydrate and rehydrate functions:
dehydrate() {
return undefined;
}
rehydrate() {
// do nothing! so we don't wipe our fetched viewers state with server data.
}
The text was updated successfully, but these errors were encountered:
I can only see data for one of my stores.
I am using immutable.js and also I am doing an isomorphic render of the app.
An interesting point is that the store that is showing data is the only one I can serialising back to the client. All the other stores I have an empty dehydrate and rehydrate functions:
The text was updated successfully, but these errors were encountered: