diff options
author | Dan <danjm.com@gmail.com> | 2017-12-09 00:39:53 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2017-12-09 03:48:50 +0800 |
commit | bfec077d798aea7b2869b3ff0d292243eec60da5 (patch) | |
tree | acee7ac726e80100a68a4d596b0a98410f969883 /ui | |
parent | d39eb370423e2a2cdd41c47b92796c0d4c829b3b (diff) | |
download | tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.gz tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.zst tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.zip |
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'), ]), ]) |