Skip to content

Commit

Permalink
remove options parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
phapdinh committed Feb 25, 2020
1 parent 043517e commit 38dae32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connect/wrapMapToProps.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import verifyPlainObject from '../utils/verifyPlainObject'

export function wrapMapToPropsConstant(getConstant) {
return function initConstantSelector(dispatch, options) {
const constant = getConstant(dispatch, options)
return function initConstantSelector(dispatch) {
const constant = getConstant(dispatch)

function constantSelector() {
return constant
Expand Down

0 comments on commit 38dae32

Please sign in to comment.