aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-12-09 00:39:53 +0800
committerDan <danjm.com@gmail.com>2017-12-09 03:48:50 +0800
commitbfec077d798aea7b2869b3ff0d292243eec60da5 (patch)
treeacee7ac726e80100a68a4d596b0a98410f969883 /ui
parentd39eb370423e2a2cdd41c47b92796c0d4c829b3b (diff)
downloadtangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar
tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.gz
tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.bz2
tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.lz
tangerine-wallet-browser-bfec077d798aea7b2869b3ff0d292243eec60da5.tar.xz
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.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'),
]),
])