Skip to content

Commit

Permalink
fix(Tier cards): bindActionCreator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Jan 28, 2020
1 parent c6e88d4 commit ceee87a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,11 @@ export const TierCard = ({
}

const mapDispatchToProps = dispatch => ({
identityVerificationActions: () =>
bindActionCreators(actions.components.identityVerification, dispatch),
identityVerificationActions: bindActionCreators(actions.components.identityVerification, dispatch),
goToSwap: () => dispatch(actions.router.push('/swap'))
})

export default connect<any, any, any>(
export default connect(
getData,
mapDispatchToProps
)(TierCard)

0 comments on commit ceee87a

Please sign in to comment.