redux-persist
redux-persist copied to clipboard
persist and rehydrate a redux store
While using PersistGate component with typescript the following error shows with prop **persistor** (_redux-persist version: ^6.0.0_) ``` ... ``` ```No overload matches this call. Overload 1 of 2, '(props: PersistGateProps...
I'm working with monorepo where redux is a package shared between other applications, for react-native i'm trying to set redux-persist storage engine to AsyncStorage with following code but i get...
I am developing mobile app with react-native, redux toolkit, redux-persist and I need an advice for folowing scenerio. The app basically stores todo tasks between group of people, and they...
This topic is :fire:HOT:fire: lately and many large companies like Google moving away from these words to be more inclusive. This PR marks the 'blacklist' and 'whitelist' properties as deprecated...
In my app, redux persist was not working in production. But, everything was working fine on development environment. Turns out it only works when redux dev tool is enabled, which...
Hi, I am using redux-persist in my project.I am getting the below warning on using the PersistGate wrapper. index.js:1 Warning: Functions are not valid as a React child. This may...
Whenever I try to use persistor.persist() after the store has completed initial hydration the following is dispatched for each persisted reducer: { type: 'persist/REHYDRATE', err: {}, key: 'some_random_key', some_key: "somevalue"...
From experience with working with other persistor libraries, when changing version the default behavior is that it will simply wipe whatever is in the localstorage. I was trying to search...
Hello I had question! For example we have a store with { auth:.. books:.. authors:... notifications:... } And i want auth,books, authors and notifications to be persisted but! Notifications should...