diff options
Linted & added salting to vault
Diffstat (limited to 'ui/app/new-keychain.js')
-rw-r--r-- | ui/app/new-keychain.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/app/new-keychain.js b/ui/app/new-keychain.js index d6fefd0c7..cc9633166 100644 --- a/ui/app/new-keychain.js +++ b/ui/app/new-keychain.js @@ -15,7 +15,7 @@ function NewKeychain () { } NewKeychain.prototype.render = function () { - const props = this.props + // const props = this.props return ( h('div', { @@ -23,11 +23,7 @@ NewKeychain.prototype.render = function () { background: 'blue', }, }, [ - h('h1',`Here's a list!!!!`), - h('button', - { - onClick: () => this.props.dispatch(actions.goHome()) - }) + h('h1', `Here's a list!!!!`), ]) ) } |