zalmoxisus / redux-devtools-extension

Redux DevTools extension.
MIT License
13.49k stars 1.01k forks source link

No store found. Make sure to follow the instructions. #730

Open xdlgj opened 4 years ago

xdlgj commented 4 years ago

import {createStore, applyMiddleware} from 'redux' import {persistStore, persistReducer} from 'redux-persist' import thunk from 'redux-thunk' import { composeWithDevTools } from 'redux-devtools-extension' import AsyncStorage from '@react-native-community/async-storage'

import rootReducer from './reducers'

const persistConfig = { key: 'root', storage: AsyncStorage, whitelist: ['user'] } const persistedReducer = persistReducer(persistConfig, rootReducer) export const store = createStore( persistedReducer, composeWithDevTools(applyMiddleware(thunk)) ) export const persistor = persistStore(store)

ericweissman commented 4 years ago

Having same issue. Have tried on multiple sites that are using Redux and devtools extension doesn't appear to be working.

dakipro commented 3 years ago

Got the same issue here, it was working before though

blaadje commented 3 years ago

same issue