-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
top level immutable support pls. #36
Comments
+1 :( |
+1 |
1 similar comment
+1 |
I think the relevant snipped is this: var _ref = state || {},
_persist = _ref._persist,
rest = _objectWithoutProperties(_ref, ['_persist']);
var restState = rest;
if (action.type === PERSIST) {
...
getStoredState(config).then(function (restoredState) {
...
}, function (err) {
...
});
return _extends({}, baseReducer(restState, action), {
});
} It's when
So how to fix it? Let's read v5 migration guide:
And here's the issue describing various workarounds: rt2zz/redux-persist-immutable#33 Well, that's bad I suppose. |
I hope we are talking about the same: for top-level-immutable supporting. Feel free to comment, find bugs, and ask questions. |
+1 |
is there any plan to support top level immutable ?
The text was updated successfully, but these errors were encountered: