Questions tagged [redux-devtools]

Redux DevTools is a live-editing time travel environment for [tag:redux]. Not to be confused with [tag:redux-devtools-extension] for Chrome and Firefox. Redux DevTools must be integrated into your project.

Redux DevTools is a live-editing time travel environment for . Not to be confused with for Chrome and Firefox. Redux DevTools must be integrated into your project.

Resources

117 questions
2
votes
1 answer

Select box not changing after changing the value from redux-devtools

locale is in my redux app state. Changing its value through react-devtools (revert option), changes paragraph inner value but not the select box value. If it renders again shouldn't it take the same value as inside the p tag? import React,…
user2670996
  • 2,654
  • 6
  • 29
  • 45
2
votes
1 answer

Why is the ActionCreators property undefined in my _reduxDevtools object using redux devtools?

Following the document on the official repo, when I create a DevTools component, a configureStore store and render the DevTools component in my main component in my working react app, I end up with an: Uncaught TypeError: Cannot read property…
tcollart
  • 1,032
  • 2
  • 17
  • 29
1
vote
1 answer

Redux dev tools not working with Next.js, Redux toolkit and Redux Saga

I am trying to get Redux dev tools to work with: Next.js 13 (App folder) Redux toolkit Redux saga The problem I have is that I cannot view the state. Sometimes it works and works more when I pin the persisted state option. I usually just get…
1
vote
0 answers

Redux-toolkit redux-persist not work on mobile or safari desktop

I am developing a platform for which I am using react-redux-devtools and redux persist to persist the state of the application, everything is perfect, even if I access it from localhost:3000/ in safari it works perfectly. When I test it in the…
1
vote
0 answers

Connecting to Redux Dev Tools from Node Based App

I have a React/Redux app, running from Node with React-Blessed. It's materially the same as React DOM: const screen = blessed.screen({..}) export function start () { render( , screen); } Redux: I…
1
vote
0 answers

redux-devtools-extension layout in devtools no longer responsive or resizing

Silly question, but I can't find any reference to this issue online other than an unanswered subreddit thread. Sometime within the last few weeks, the layout for the redux-devtools-extension in devtools stopped being responsive. I used to be able to…
1
vote
0 answers

Redux devtools connection to localhost not working

I added Redux DevTools to my Chrome browser as started using Redux. The DevTools have option in Settings to use no connection or use local server connection. I am working on localhost so I am trying to connect using local server. But it doesn't…
nickornotto
  • 1,946
  • 4
  • 36
  • 68
1
vote
0 answers

How to set up Redux Devtools in VScode ? (Using a Company Extension that blocks browser extensions.)

Using a Company Laptop I tried installing redux devtools browser extension but access is disabled. I have installed the Redux Devtools vscode extension and i want to set it up to run in localhost: I have tried putting in "hostname:localhost" and…
1
vote
1 answer

Redux dev tools showing user input password in plain text

After a form submission using Redux, I am able to see the plain text password in the dev tools meta section. Is this safe? Am I doing something wrong when passing the password down to the reducer? How can I make this more secure? So in my userSlice…
Dylan L.
  • 1,243
  • 2
  • 16
  • 35
1
vote
0 answers

Why does my Redux DevTools overwrites the start action with success action?

I'm currently having a problem wherein my useEffect() is not triggering on state change. Upon investigating, it could have been related to what I see on my Redux DevTools, My FETCH_PAYMENT_METHODS_START is being deleted, or rather being replaced by…
Jan Ariel San Jose
  • 690
  • 3
  • 11
  • 31
1
vote
0 answers

Purge/reset all Redux data in Chrome

I'm learning Redux and I somehow ended up with corrupted data. How do I purge all Redux data in Chrome browser? There is nothing of value in my half developed app, so I don't need any precise manipulation, just a clean slate. But I don't want to…
Milo Bem
  • 1,033
  • 8
  • 20
1
vote
0 answers

Using ReduxDevTools in Storybook with Angular NGRX - Is there a solution?

I have a simple Angular Component wired up to an NGRX store. It works in the live application but not in the Storybook render. I have created a simple action and it should trigger in the ngOnInit() function. I have logged the reducer and can see the…
cuznerdexter
  • 586
  • 5
  • 21
1
vote
2 answers

react native redux toolkit devtools

how can I add redux devtools with redux toolkit ? import { configureStore, getDefaultMiddleware, compose } from '@reduxjs/toolkit'; import reducers from './reducers'; import createSagaMiddleware from 'redux-saga'; import saga from './saga'; const…
locklock123
  • 197
  • 1
  • 13
1
vote
1 answer

Troubleshooting: Redux & Redux Dev Tools -- Action "logjam" -- Actions are not appearing... then appearing all at once on next action

Problem Actions in my redux store are appearing to log-jam behind one another. I'm iterating through a set of thunks, which each call a number of actions to show they've started, succeeded, etc. When this happens, an action appears for a second in…
1
vote
1 answer

Can't get redux devtools to work for debugging a React Chrome extension

Having some trouble getting Redux devtools to work. When I open up the redux tab in devtools, it says "No store found. Make sure to follow the instructions". I tried following the instructions under 1.1 Basic store, which did not work. I then tried…