As the title says. I added
// Create Store
const store = createStoreWithFirebase(
rootReducer,
initialState,
composeWithDevTools(reactReduxFirebase(firebase))
);
This works fine in a browser without the redux extension installed. IE safari, chrome incognito. The instant I try to run the site with the extension installed I get.
Error: You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.
If I change
composeWithDevTools()
To
compose()
The application works fine.
How can I fix this?