redux-persist
redux-persist copied to clipboard
persist and rehydrate a redux store
So I have just started an expo project, and I am using redux-presist. My problem is that the state is loading fine on ios. But it's not working on android....
I am trying to use redux-persist along with redux-toolkit to store data on local storage on Next Js and TypeScript. But it responded with this error message: "redux-persist failed to...
``` "redux-persist": "^6.0.0", "react": "16.13.1", "react-native": "0.63.4", ``` --- ``` export const migrations = { 0: (state: any) => { return { ...state, someObject: { ...state.someObject, someItem: true }, };...
I see that @rt2zz isn't active anymore. I have tried reaching out through multiple platforms without any response. Nonetheless, I think we are all grateful for his contributions and owe...
I'm using nextJS with redux-toolkit, everything looks fine and works fine, I test some unit tests with vitest and it also works as intended (I don't see any relationship or...
After upgrading to RN 0.73.1, my app gets stuck on a blank loading screen (PesistGate loading). Removing `PersistGate` from the App tree makes it work. I tried debugging the problem,...
The previously recommended `redux-persist-sensitive-storage` only encrypts the data on iOS; on Android it is stored in clear text and readable via the file browser. There exists an alpha-Branch which solves...
I was using react-toolkit but then decided to use redux-persist in order to persist my user reducer (ie my user data, like the access token and info), but when i...
When I include `import { PersistGate } from 'redux-persist/integration/react';` into my app.js file it throws an exception **Uncaught TypeError**. I am not sure how to proceed. My code is as...
I have a react native application. I want to clear the data when app is uninstalled. For Android this works but for the IOS I have tried multiple solutions but...