-
-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
Description
So I am building a website. When I use a regular browser like google chrome everything works as expected, then I used blisk I got an error saying app.js:14868 Uncaught TypeError: Cannot read property 'apply' of undefined(…) I don't know what's going on but when I looked at line 14868 this is what I saw.
any idea as to how to fixed this?
this is the store that is using the compose function btw.
import {
compose,
createStore,
applyMiddleware
} from 'redux';
import reduxThunk from 'redux-thunk';
import reducers from './reducers';
const store = compose(
applyMiddleware(reduxThunk),
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__()
)(createStore)(reducers);
export default store;
using:
jpacareu, JakobJingleheimer, qietuzi, rrubo, daji777 and 8 more
Metadata
Metadata
Assignees
Labels
No labels

