aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-08-17 01:48:31 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-08-17 01:48:31 +0800
commit7d1b2db87e9d66735d0de04dc5e8c53e72e8431b (patch)
tree1152360fd3b9e17d379ecbc0595299c40eb3068a /ui/app/components
parent009784c79b5c0ebfd9dbe9536870c55e906e914d (diff)
downloadtangerine-wallet-browser-7d1b2db87e9d66735d0de04dc5e8c53e72e8431b.tar.gz
tangerine-wallet-browser-7d1b2db87e9d66735d0de04dc5e8c53e72e8431b.tar.zst
tangerine-wallet-browser-7d1b2db87e9d66735d0de04dc5e8c53e72e8431b.zip
linting and ignoring.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/account-eth-balance.js2
-rw-r--r--ui/app/components/eth-balance.js1
2 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/account-eth-balance.js b/ui/app/components/account-eth-balance.js
index b748ea2ea..4cdab235a 100644
--- a/ui/app/components/account-eth-balance.js
+++ b/ui/app/components/account-eth-balance.js
@@ -65,7 +65,7 @@ EthBalanceComponent.prototype.renderBalance = function (value, state) {
h('.flex-column', [
h(Tooltip, {
position: 'bottom',
- title: `${balance} ${label}`,
+ title: `${ethNumber} ${ethSuffix}`,
}, [
h('.flex-row', {
style: {
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index a5584a235..6c324c947 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -1,7 +1,6 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const connect = require('react-redux').connect
const formatBalance = require('../util').formatBalance
const generateBalanceObject = require('../util').generateBalanceObject
const Tooltip = require('./tooltip.js')