diff options
Fix transition bugs after vault restore
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index e309d5f16..2775e24fb 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -32,8 +32,8 @@ function AccountDetailScreen() { AccountDetailScreen.prototype.render = function() { var state = this.props var selected = state.address || Object.keys(state.accounts)[0] - var identity = state.identities[state.address] - var account = state.accounts[state.address] + var identity = state.identities[selected] + var account = state.accounts[selected] var accountDetail = state.accountDetail var transactions = state.transactions |