Closed
Description
Looking at the redux breaking changes, and the bc-1.0.0 branch, looks like compose was changed which may affect this line
let finalCreateStore = _storeEnhancers ? compose(..._storeEnhancers, createStore) : createStore;
looks like you might just be able to change it to
let finalCreateStore = _storeEnhancers ? compose(..._storeEnhancers)(createStore) : createStore;
Metadata
Metadata
Assignees
Labels
No labels