aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/account-detail.js
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/account-detail.js
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/account-detail.js')
-rw-r--r--ui/app/account-detail.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 486a1a633..cc956fed3 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -10,7 +10,7 @@ const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
const valuesFor = require('./util').valuesFor
const Identicon = require('./components/identicon')
-const AccountEtherBalance = require('./components/account-eth-balance')
+const EthBalance = require('./components/eth-balance')
const TransactionList = require('./components/transaction-list')
const ExportAccountView = require('./components/account-export')
const ethUtil = require('ethereumjs-util')
@@ -168,7 +168,7 @@ AccountDetailScreen.prototype.render = function () {
},
}, [
- h(AccountEtherBalance, {
+ h(EthBalance, {
value: account && account.balance,
style: {
lineHeight: '7px',