redux-persist icon indicating copy to clipboard operation
redux-persist copied to clipboard

persist and rehydrate a redux store

Results 206 redux-persist issues
Sort by recently updated
recently updated
newest added

I need a remove `test` key from storage when it's null or empty. But did not find something about it in docs or somewhere. There are any solution how to...

In our application, we want to resync our redux state from localStorage when the user re-focuses the tab We do this so that if the user has multiple pages accessing...

In my react-native project, the callback after hydrating is sometimes not being called, if I'm using a debugger. Without debugger, the problem does not appear. It seems to be the...

So let's say I have 10 reducers. I want to persist 2 of them. Upon logging out, I clear my persisted reducers out. Now I want to create an extra...

Functionality seems working fine, but types may need to be adjusted. 🙏

I have gone through https://github.com/rt2zz/redux-persist/blob/master/docs/migrations.md Guide looks like snapshot of basic usage, without any compilation error. A real life use case will be very helpful. ## Expectation from guide 1....

![WhatsApp Image 2024-02-22 at 12 57 58 AM](https://github.com/rt2zz/redux-persist/assets/110199723/b5e27284-0a3d-4e97-92a8-cac92177251c) package.json ``` { "name": "unknown", "version": "0.0.1", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios", "lint": "eslint .", "start": "react-native...

I have following state `{ bluerain: { intl: { locale: 'en', rtl: false, messages: { en:{}, ur:{}, ch:{}, } } }` I have used redux-persist-transform-filter to ignore "messages" object while...

Question: How would we avoid double encoding the stored JSON? Example file contents: ``` {"loading":"false","loaded":"\"2020-09-09T18:22:24.623Z\"" .... ``` What I expect to be stored: ``` {"loading":false,"loaded":"2020-09-09T18:22:24.623Z" .... ``` Notice how both...

My store is created with or without redux-persist dynamically. It would be nice to disable storage creation errors when a store is initialized without using the redux-persist `persistedReducer` and/or preferably...