-
First of all thank you all for this wonderful library, I cannot thank enough.
I am using below type definition with apollo-link-state
```
export const typeDefs = `
type User {
phoneNu…
-
My state is not being persisted, the flush function is returning an array of null, instead of resolved promises.
This is are the packages i am using:
redux: v4.0.4
react-redux: v7.1.1
redux-pers…
-
I'm trying to implement redux-persist in my code. After doing all the setup, I got the error when trying to change the state.
Here's my code in my reducers.js file:
```
import { createStore } f…
-
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…
-
I've been trying to work out if it is possible to have some code that dispatches an action, and then waits for it to be fully persisted to disk (by redux-persist) before continuing on.
Is something…
-
Hello,
I have nested reducers so I can use a blacklist on them,
```javascript
const persistConfig = {
key: "root",
storage,
blacklist: ["checkout"],
};
const checkoutPersistConfi…
-
In some use cases you might want to start your app with a freshly purged store. I am wondering what's the best way to do this? I know there is `.purge()` for persistor, but it feels bad to wait until …
-
I tried to make code splitting works with RTK 2.0 and redux-persist, and I initially started with this code
```
const rootReducerWithSlice = rootReducer.inject({
reducerPath: NAME,
reducer: …
-
resolve #17
## ✨ 구현한 기능
### 서버 사이드에서 Redux Persist 의 WebStorage API 의 부재로 사전렌더링시 오류 발생
1. 서버 사이드 Storage 임시로 구현 및 서버사이드와 클라이언트 사이드에서 리턴되는 storage 분기
```ts
// /src/store/persist/persistSt…
-
In my project I persist the state using redux-persist-transform-immutable (which uses [transit-immutable-js)](https://github.com/glenjamin/transit-immutable-js) making it possible to store & restore …