aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2017-12-15 04:06:53 +0800
committerGitHub <noreply@github.com>2017-12-15 04:06:53 +0800
commit453bfd34e333528e8dcbf17c550cbb8a1c4d17dc (patch)
tree5de6f2b31689851185283973c0efbde6562edfdf /ui/app
parentfb5edfe69e02b1a71c7440b1b871d70acf18e729 (diff)
parentbfec077d798aea7b2869b3ff0d292243eec60da5 (diff)
downloadtangerine-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/app')
-rw-r--r--ui/app/components/coinbase-form.js2
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'),
]),
])