aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-09-07 07:45:06 +0800
committerDan Finlay <dan@danfinlay.com>2016-09-07 07:45:06 +0800
commit09dd854a96c2756be02d5043be40089a097cadc1 (patch)
tree6655bd79eb0ae35d3630fa88995cb15b2f5f26d0 /ui/app/accounts
parent58a8f02294eb1079d92cdf1e6d05a74a224029c3 (diff)
downloadtangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.gz
tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.zst
tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.zip
Nearly finished factoring fiat value into eth-balance
Diffstat (limited to 'ui/app/accounts')
-rw-r--r--ui/app/accounts/account-list-item.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js
index aa80e0e23..0b4acdfec 100644
--- a/ui/app/accounts/account-list-item.js
+++ b/ui/app/accounts/account-list-item.js
@@ -3,7 +3,7 @@ const h = require('react-hyperscript')
const inherits = require('util').inherits
const ethUtil = require('ethereumjs-util')
-const AccountEtherBalance = require('../components/account-eth-balance')
+const EthBalance = require('../components/eth-balance')
const CopyButton = require('../components/copyButton')
const Identicon = require('../components/identicon')
@@ -50,7 +50,7 @@ NewComponent.prototype.render = function () {
textOverflow: 'ellipsis',
},
}, ethUtil.toChecksumAddress(identity.address)),
- h(AccountEtherBalance, {
+ h(EthBalance, {
value: account.balance,
style: {
lineHeight: '7px',