We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
@Huanzhang89 Hi! Are there any updates to this issue?
Sorry, something went wrong.
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: