diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-10-12 06:50:02 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-10-12 06:50:02 +0800 |
commit | 5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3 (patch) | |
tree | 6e98b8dbf03ef61c655625b6349b056dcdc7bbe0 /ui/app | |
parent | f7361d9654b1a55d0c21ba37b11e1575e7a555ca (diff) | |
download | tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar.gz tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar.bz2 tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar.lz tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar.xz tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.tar.zst tangerine-wallet-browser-5e9bc31c58aff4b9d1d0d1bd54416ffb0a1b14d3.zip |
Cleanup.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/account-detail.js | 3 | ||||
-rw-r--r-- | ui/app/first-time/disclaimer.js | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index 01c7e8781..00dd57b6f 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -44,6 +44,9 @@ AccountDetailScreen.prototype.render = function () { var props = this.props var selected = props.address || Object.keys(props.accounts)[0] var identity = props.identities[selected] + console.log(props) + console.log(selected) + console.log(identity) var account = props.accounts[selected] const { network } = props diff --git a/ui/app/first-time/disclaimer.js b/ui/app/first-time/disclaimer.js index 3ec0b37c3..819d4a110 100644 --- a/ui/app/first-time/disclaimer.js +++ b/ui/app/first-time/disclaimer.js @@ -92,7 +92,7 @@ DisclaimerScreen.prototype.render = function () { h('button', { style: { marginTop: '18px' }, - disabled: disabled, + disabled, onClick: () => this.props.dispatch(actions.agreeToDisclaimer()), }, disabled ? 'Scroll Down to Enable' : 'I Agree'), ]) |