diff options
Merge branch 'i328-MultiVault-v1' into i715-AddImportMenu
Diffstat (limited to 'ui/app/accounts/index.js')
-rw-r--r-- | ui/app/accounts/index.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js index edb15eafe..5ab31a1c0 100644 --- a/ui/app/accounts/index.js +++ b/ui/app/accounts/index.js @@ -154,6 +154,13 @@ AccountsScreen.prototype.addNewAccount = function () { this.props.dispatch(actions.addNewAccount(0)) } +/* An optional view proposed in this design: + * https://consensys.quip.com/zZVrAysM5znY +AccountsScreen.prototype.addNewAccount = function () { + this.props.dispatch(actions.navigateToNewAccountScreen()) +} +*/ + AccountsScreen.prototype.goHome = function () { this.props.dispatch(actions.goHome()) } |