Multiple instances in dropdown

Author: tgreen7Created Jan 18, 2018Updated Nov 1, 2023

I setup the extension as specified in the docs

bash
import { applyMiddleware, compose, createStore } from "redux";
import thunk from "redux-thunk";
import rootReducer from "./reducers";

const composeEnhancers =
  typeof window === "object" && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
    ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({
        // Specify extension’s options like name, actionsBlacklist, actionsCreators, serialize...
      })
    : compose;

const enhancer = composeEnhancers(applyMiddleware(thunk));
const store = createStore(rootReducer, enhancer);

export default store;

But there are always multiple instances listed in the dropdown: screen shot 2018-01-17 at 10 35 55 pm

Also autoselect instance does not seem to work. Why are there multiple instances listed? It would be great to be able to open the devtools and immediately see the useful actions.

Thanks!

Source: zalmoxisus/redux-devtools-extension