We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So my initial state of store is like so:
reducerA: { a: null, b: null, c: {} }
if i use this to create a BlackList
createBlacklistFilter('reducerA', [ 'c', ])
Then Right after persist/REHYDRATE fires my store is updated to :
persist/REHYDRATE
reducerA: { a: null, b: null, }
I thought the intended goal was to not persist certain keys but still have the store fallback to initial state. AM I doing something wrong?
The text was updated successfully, but these errors were encountered:
this worked #17 (comment)
Sorry, something went wrong.
No branches or pull requests
So my initial state of store is like so:
if i use this to create a BlackList
Then Right after
persist/REHYDRATE
fires my store is updated to :I thought the intended goal was to not persist certain keys but still have the store fallback to initial state. AM I doing something wrong?
The text was updated successfully, but these errors were encountered: