aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/index.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-24 06:31:11 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-24 06:31:11 +0800
commitadaf1c7012b398d5d0d548553ba35e80cf5c3d31 (patch)
tree5e8f9b792dc2c3baab25faddea18a3618abc2f74 /ui/app/accounts/index.js
parent45916175d7281ff0eba25fcb5918a01e02baad7c (diff)
downloadtangerine-wallet-browser-adaf1c7012b398d5d0d548553ba35e80cf5c3d31.tar.gz
tangerine-wallet-browser-adaf1c7012b398d5d0d548553ba35e80cf5c3d31.tar.zst
tangerine-wallet-browser-adaf1c7012b398d5d0d548553ba35e80cf5c3d31.zip
Add copy address button to account list
Diffstat (limited to 'ui/app/accounts/index.js')
-rw-r--r--ui/app/accounts/index.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js
index 9ddcfdcab..1a42f7470 100644
--- a/ui/app/accounts/index.js
+++ b/ui/app/accounts/index.js
@@ -3,12 +3,8 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const extend = require('xtend')
-const Identicon = require('../components/identicon')
const actions = require('../actions')
-const EtherBalance = require('../components/eth-balance')
const valuesFor = require('../util').valuesFor
-const addressSummary = require('../util').addressSummary
-const formatBalance = require('../util').formatBalance
const findDOMNode = require('react-dom').findDOMNode
const AccountPanel = require('./account-panel')
@@ -67,6 +63,7 @@ AccountsScreen.prototype.render = function() {
[
identityList.map((identity) => {
return h(AccountPanel, {
+ key: `acct-panel-${identity.address}`,
identity,
selectedAddress: this.props.selectedAddress,
accounts: this.props.accounts,