diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2017-12-15 04:06:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 04:06:53 +0800 |
commit | 453bfd34e333528e8dcbf17c550cbb8a1c4d17dc (patch) | |
tree | 5de6f2b31689851185283973c0efbde6562edfdf /ui | |
parent | fb5edfe69e02b1a71c7440b1b871d70acf18e729 (diff) | |
parent | bfec077d798aea7b2869b3ff0d292243eec60da5 (diff) | |
download | tangerine-wallet-browser-453bfd34e333528e8dcbf17c550cbb8a1c4d17dc.tar.gz tangerine-wallet-browser-453bfd34e333528e8dcbf17c550cbb8a1c4d17dc.tar.zst tangerine-wallet-browser-453bfd34e333528e8dcbf17c550cbb8a1c4d17dc.zip |
Merge pull request #2706 from danjm/MM-fix-buy-cancel-button
Fixes the cancel button in the buy screen to take the user home.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/coinbase-form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/coinbase-form.js b/ui/app/components/coinbase-form.js index f44d86045..f70208625 100644 --- a/ui/app/components/coinbase-form.js +++ b/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'), ]), ]) |