Skip to content

Commit 38dae32

Browse files
committed
remove options parameter
1 parent 043517e commit 38dae32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/connect/wrapMapToProps.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import verifyPlainObject from '../utils/verifyPlainObject'
22

33
export function wrapMapToPropsConstant(getConstant) {
4-
return function initConstantSelector(dispatch, options) {
5-
const constant = getConstant(dispatch, options)
4+
return function initConstantSelector(dispatch) {
5+
const constant = getConstant(dispatch)
66

77
function constantSelector() {
88
return constant

0 commit comments

Comments
 (0)