Skip to content

Commit

Permalink
fix(set coinify checkout step only for coinify)
Browse files Browse the repository at this point in the history
  • Loading branch information
sixtedemaupeou committed Jun 7, 2018
1 parent 148a826 commit 56688b5
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -13,7 +13,9 @@ class TabMenuBuySellStatusContainer extends React.PureComponent {
}

handleClick (value) {
this.props.coinifyActions.coinifyNextCheckoutStep('checkout')
if (this.props.partner === 'coinify') {
this.props.coinifyActions.coinifyNextCheckoutStep('checkout')
}
this.props.input.onChange(value)
}

Expand Down

0 comments on commit 56688b5

Please sign in to comment.