Skip to main content
95 votes
15 answers
79k views

I'm trying to setup redux-persist in a react native app. However I'm hitting this error: console.error: "redux-persist failed to create sync storage. falling back to "noop" storage I'...
user1872384's user avatar
  • 7,187
-3 votes
1 answer
309 views

I'm trying to migrate an existing React/Vite app (currently using React Router v7, along with redux, rtk-query, and redux-persist) to use React Router v7 in Framework mode. I'm hitting an error when ...
drosboro's user avatar
  • 451
68 votes
5 answers
73k views

I have configured redux-persist with a traditional react-redux setup like this: onst persistConfig = { key: 'root', storage, whitelist: ['todos'], }; const persistedReducer = persistReducer(...
Ashik's user avatar
  • 3,498
3 votes
3 answers
8k views

I followed the official docs in how to make the redux work with Next.js app router. Everything worked as expected, but now I am trying to persist the data with redux-persist and things got very muddy. ...
Kos-Mos's user avatar
  • 757
1 vote
2 answers
103 views

I've looked at a number of forum posts prior to posting and still have not found a solution. I am storing data using Redux which is working as intended. I store it in SignIn.js and after navigating to ...
mfusco's user avatar
  • 49
0 votes
2 answers
469 views

I got Next.js application with Typescript and I'm trying to make redux work with redux-persist, if the state in slice is same as the initial state, the application works fine, but if it actually have ...
Jakub Hampl's user avatar
3 votes
1 answer
121 views

I'm having a problem getting Redux-Persist to work and hoping to get some pointers if I've done something wrong. Here is my Store.js import { configureStore, getDefaultMiddleware } from "@reduxjs/...
OliShoey's user avatar
-3 votes
1 answer
637 views

Everything works when you remove the persisted reducer, and does not work with the persisted reducer. This is likely due to an issue with redux-persist, which is an older but still extremely popular ...
Steven Matthews's user avatar
-1 votes
2 answers
808 views

I want to persist in the state of the redux store but do not want to handle it using the local storage. I just read some documents but according to the answers they provide, we can persist the state ...
Rabia Khan's user avatar
-1 votes
2 answers
1k views

I've added redux-persist so that the state persists after refresh. But I keep getting this error in the terminal: ✓ Compiled /postings in 599ms (3066 modules) redux-persist failed to create sync ...
Leon Gaban's user avatar
  • 39.4k
0 votes
2 answers
106 views

its my store.ts file: import storage from 'redux-persist/lib/storage'; // defaults to localStorage for web import { FLUSH, PAUSE, PERSIST, persistReducer, persistStore, PURGE, REGISTER, ...
Nasirkhan Pathan's user avatar
-1 votes
1 answer
269 views

I'm new to React Redux. Can you tell me how to manually write the below saveUserFilter function? I don't want to use redux-persist-transform-filter anymore as it's using lodash.set, which is ...
scrscr87's user avatar
0 votes
2 answers
2k views

So, i'm using Nextjs 13.4 version, i created a Redux js and I also used redux-persist package to store the data here's my simple code: index.ts: import { configureStore } from "@reduxjs/toolkit&...
mvsr cm's user avatar
  • 35
2 votes
1 answer
658 views

I am working on a React Native app. I have a combination of reducers set up together using persitCombineReducers. One of the slices had a revamp and now has a new structure. This is the old structure :...
Jules's user avatar
  • 431
-1 votes
1 answer
61 views

I want to make the user data persistent upon page refreshes. But when I successfully log in and check the Storage in browser developer tools' Application tab, it is empty. I have activated debugging ...
okaeiz's user avatar
  • 438

15 30 50 per page
1
2 3 4 5
35