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

Trying to save socket.io instance in reducer this error message pops continuously This is how we are dispatching the socket instance const socket = io(baseURL, { auth: { token }...

Hii. I have a interceptor where i will add headers and token on every http request. its not a connected component nor Action creator. I need to get the persisted...

> - [**config**](https://github.com/rt2zz/redux-persist/blob/master/src/types.js#L13-L27) *object* https://github.com/rt2zz/redux-persist/blob/master/src/types.js#L13-L27 The link should be updated to https://github.com/rt2zz/redux-persist/blob/master/src/types.ts#L33

Hi, are there any hints about how to use this with `manualPersist` set to `true`? The docs don't document the proper usage of this **at all**. [A single line for...

My current state looks like : ```ts /* eslint-disable @typescript-eslint/no-explicit-any */ export const migrations = { 0: (state: any) => { return { ...state, } }, 1: (state: any) =>...

We've run into the same problem with Android. Has anyone had any luck addressing it? Zero-ing to null-ing the timeout value hasn't worked. _Originally posted by @mdescalzo in https://github.com/rt2zz/redux-persist/issues/1430#issuecomment-1476877956_

I upgraded React Native from version 0.67 to 0.71 and noticed that the navigation back button click is not working anymore(click yellow warning box is not working). However, using the...

I am getting this error on iOS only so far. Seems to only happen when Redux Persist is enabled. Relevant libraries: ``` "@reduxjs/toolkit": "^2.2.6", "react": "18.2.0", "react-native": "0.72.10", "redux": "^4.2.1",...

I got this error. I am new in redux-persist. ![screen shot 2018-01-03 at 1 13 22 pm](https://user-images.githubusercontent.com/19325531/34509696-09050698-f088-11e7-83c8-fb35c56b687e.png)

Is it possible to write a short example of a custom persistor? Like even if much of it is ust pseudo-code? The types are _super_ generic, returning `any` for just...