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

persist and rehydrate a redux store

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

Environment Expo CLI 3.28.5 environment info: System: OS: Windows 10 10.0.18363 Binaries: Node: 12.17.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.4 - E:\react-native\moego\node_modules\.bin\yarn.CMD npm: 6.14.4 - C:\Program Files\nodejs\npm.CMD IDEs: Android Studio: Version...

I had an error in one of my transformers that was resulting in my state not being persisted, but that error wasn't being thrown/logged, leading to a lot of confusion....

Looks like if we initialize the persistor with `persistStore(store...)` it loads the store correctly, but dispatching actions will not persist the actual changes in HeadlessJS mode (no components get mounted)....

I could not use persist gate with TypeScript and React Native because of this error. Could not find a declaration file for module 'redux-persist/integration/react'.

Latest version @types/redux-persist redux-persist Could not find a declaration file for module 'redux-persist/lib/storage'. Try `npm i --save-dev @types/redux-persist` if it exists or add a new declaration (.d.ts) file containing `declare...

RootStaga is not able to send requests while PersistGate is provided. Rn version: 0.63.3

A link in the readme is pointing to the wrong file/line numbers

There's something wrong with the MigrationManifest typings. The way it requires to define a migration is as follows: ``` export const migrations = { 0: (state: PersistedState) => { return...

Added support for downgrade migrations with an optional argument ```js downgradeMigrations?: MigrationManifest ``` in createMigrate. Should cover: https://github.com/rt2zz/redux-persist/issues/831

Hi there, **Issue:** PersistGate gets permission to render before persist/REHYDRATE is actually complete. Both the _persist.rehydrated and bootstrapped values are true even before the persistStore callback function is fired. This...