diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-01 04:12:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 04:12:12 +0800 |
commit | 8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca (patch) | |
tree | 64c9d32e73446a855e31768e6e1b7dfc45540696 /old-ui | |
parent | 28c6347cddcd90161f21a1fc145736e63a9f1a13 (diff) | |
parent | 5de0471fcb65fb70dbb55e514a2da48b0e187d50 (diff) | |
download | tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar.gz tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar.bz2 tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar.lz tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar.xz tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.tar.zst tangerine-wallet-browser-8f5817c090efcb1dc3e4c291cfc4eb929e8d2dca.zip |
Merge pull request #3339 from danjm/i3336-cancel-button-buy-eth
[Old-UI] Fix cancel button on buy eth screen.
Diffstat (limited to 'old-ui')
-rw-r--r-- | old-ui/app/components/coinbase-form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/old-ui/app/components/coinbase-form.js b/old-ui/app/components/coinbase-form.js index 35b2111ff..1a1b77b50 100644 --- a/old-ui/app/components/coinbase-form.js +++ b/old-ui/app/components/coinbase-form.js @@ -40,7 +40,7 @@ CoinbaseForm.prototype.render = function () { }, 'Continue to Coinbase'), h('button.btn-red', { - onClick: () => props.dispatch(actions.backTobuyView(props.accounts.address)), + onClick: () => props.dispatch(actions.goHome()), }, 'Cancel'), ]), ]) |