Skip to content

Commit b30e6ae

Browse files
jimbollatimdorr
authored andcommitted
Refactors applyMiddleware to reduce confusion around createStore args. (reduxjs#2201)
Because reduxjs#2200 reduxjs#2131#2128 reduxjs#2028...
1 parent 7a4cc71 commit b30e6ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/applyMiddleware.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import compose from './compose'
1717
* @returns {Function} A store enhancer applying the middleware.
1818
*/
1919
export default function applyMiddleware(...middlewares) {
20-
return (createStore) => (reducer, preloadedState, enhancer) => {
21-
const store = createStore(reducer, preloadedState, enhancer)
20+
return (createStore) => (...args) => {
21+
const store = createStore(...args)
2222
let dispatch = store.dispatch
2323
let chain = []
2424

0 commit comments

Comments
 (0)