diff options
Diffstat (limited to 'ui')
-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'), ]) |