Skip to content

"redux-devtools-extension" gets laggy and eventually crashes when I try to open it. #643

@bhatvikrant

Description

@bhatvikrant

As soon as I click on the redux dev tools extension in chrome & firefox after some actions are dispatched the extension becomes unresponsive and the browser window freezes.

I checked out issue #347 and tried to find how to set maxAge, but was unable to find how to set maxAge for redux-devtools-extension

My store.js file looks like this:

import { createStore, applyMiddleware } from "redux";
import thunk from "redux-thunk";
import { composeWithDevTools } from "redux-devtools-extension";
import rootReducer from "./rootReducer";

const store = createStore(
  rootReducer,
  composeWithDevTools(applyMiddleware(thunk))
);

export default store;

Is there already a fix for this? Thanks for your time 🙂

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions