aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/actions.js2
-rw-r--r--ui/app/app.js2
-rw-r--r--ui/app/new-keychain.js8
3 files changed, 4 insertions, 8 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index d5a00833b..b70716214 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -340,7 +340,7 @@ function backToUnlockView () {
function showNewKeychain () {
return {
- type: actions.SHOW_NEW_KEYCHAIN
+ type: actions.SHOW_NEW_KEYCHAIN,
}
}
diff --git a/ui/app/app.js b/ui/app/app.js
index cbe02b683..fb9b16a3a 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -8,7 +8,7 @@ const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
const DisclaimerScreen = require('./first-time/disclaimer')
const InitializeMenuScreen = require('./first-time/init-menu')
const CreateVaultScreen = require('./first-time/create-vault')
-const NewKeychainScreen = require('./new-keychain')
+const NewKeyChainScreen = require('./new-keychain')
// unlock
const UnlockScreen = require('./unlock')
// accounts
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!!!!`),
])
)
}