Open Huanzhang89 opened 6 years ago
I've been trying to get this to work with composeWithDevTools from redux-devtools-extension like this
import {createStore,applyMiddleware,compose} from 'redux'; import { composeWithDevTools } from 'redux-devtools-extension'; import thunk from 'redux-thunk'; import persistState from 'redux-localstorage' const store = createStore( reducers, composeWithDevTools( applyMiddleware(thunk), persistState(), ) ) export default store
However this breaks all the async requests in my app.
Any ideas?
@Huanzhang89 Hi! Are there any updates to this issue?
I've been trying to get this to work with composeWithDevTools from redux-devtools-extension like this
However this breaks all the async requests in my app.
Any ideas?