No store found.
See original GitHub issueI am not able to integrate dev tools for redux with navigator. Here is my store config file.I don’t know what I am doing wrong.
I have added chrome extention but always get ‘No store found’.
import ReduxThunk from 'redux-thunk';
import { NavigationReducer, createNavigationEnabledStore } from '@expo/ex-navigation';
import UserReducer from './userReducers'
import { composeWithDevTools } from 'remote-redux-devtools';
const composeEnhancers = composeWithDevTools({ realtime: true, port: 8000 });
const createStoreWithNavigation = createNavigationEnabledStore({
createStore,
navigationStateKey: 'navigation',
});
const Store = createStoreWithNavigation(
combineReducers({
user:UserReducer,
navigation: NavigationReducer,
}),
composeEnhancers(
applyMiddleware(ReduxThunk),
// other store enhancers if any
)
);
export default Store;
Issue Analytics
- State:
- Created 6 years ago
- Reactions:6
- Comments:6 (1 by maintainers)
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 >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 >“no-store” is found in your Cache-Control - WordPress.org
But in compatibility im getting this message: “no-store” is found in your Cache-Control response header. Please contact your hosting provider to remove this....
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 Free
Top 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
@imod you can also right click in Chrome then select Redux DevTools > Open Remote DevTools
You should click
Remote DevTools
button from the bottom, then in that new window click on Settings and set your port. If you indicate the port, it means that you’re runningremotedev-server
. You can try without that at least to check that everything works. Additionally you can use web app instead of the extension.