No store found
See original GitHub issueI haven’t used redux devtools for a couple weeks, but it was working before. Now I am just getting an error that says I need to follow the instructions as there is no store. Here is my setup.
import { createStore, applyMiddleware } from 'redux';
import { composeWithDevTools } from 'redux-devtools-extension';
import thunk from 'redux-thunk';
import reducer from './reducer';
const configureStore = () => {
const middleware = [thunk];
return createStore(
reducer,
composeWithDevTools(applyMiddleware(...middleware))
);
};
export { configureStore };
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:9
Top Results From Across the Web
"No store found" when using Redux chrome extension
I've got the solution from here. The right code is : import {createStore, applyMiddleware, compose} from 'redux'; import rootReducer from '.
Read more >Since this morning I'm getting "No store found. Make sure to ...
So I refresh the app I see the redux actions for a second 90% of the times I see "No store found. Make...
Read more >No store found. Make sure to follow the instructions. | by Tan Dat
I have to right click on Redux Devtools Extension -> Open Remote DevTools -> Then change the Settings to use the custom server...
Read more >[Solved]-React Native, Redux: No Store Found-React Native
[Solved]-React Native, Redux: No Store Found-React Native. Search. score:1. const store = createStore(rootReducer, preloadedState, composeWithDevTools( ...
Read more >configureStore - Redux Toolkit
An optional array of Redux store enhancers, or a callback function to ... it will be called with the existing array of enhancers...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Me and my coworker have the same issue now as well.
I use “const composeEnhancers = window.REDUX_DEVTOOLS_EXTENSION_COMPOSE || compose” but it still do not work