diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-07-12 11:53:26 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-07-12 11:53:26 +0800 |
commit | e21a48da838401efed696d2ec0404cec93cee8ff (patch) | |
tree | fa178267c0a5debd58abdf285575f4ae8afdc735 /ui | |
parent | 539fe3e940ca364d0af0abc9cf1e361ea39c1151 (diff) | |
download | tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar.gz tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar.bz2 tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar.lz tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar.xz tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.tar.zst tangerine-wallet-browser-e21a48da838401efed696d2ec0404cec93cee8ff.zip |
Linted
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pending-tx-details.js | 3 | ||||
-rw-r--r-- | ui/lib/contract-namer.js | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index 05409cf44..9a06ad09e 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -185,7 +185,6 @@ PTXP.miniAccountPanelForRecipient = function () { }, }, addressSummary(txParams.to, 6, 4, false)), ]) - } else { return h(MiniAccountPanel, { imageifyIdenticons: imageify, @@ -225,7 +224,7 @@ PTXP.warnIfNeeded = function () { } -function forwardCarrat(imageify){ +function forwardCarrat (imageify) { if (imageify) { return ( diff --git a/ui/lib/contract-namer.js b/ui/lib/contract-namer.js index 62c7933e8..c99d44de6 100644 --- a/ui/lib/contract-namer.js +++ b/ui/lib/contract-namer.js @@ -13,7 +13,6 @@ module.exports = function(addr, identities = {}) { const address = addr.toLowerCase() const ids = hashFromIdentities(identities) - console.dir({ addr, ids }) return addrFromHash(address, ids) || addrFromHash(address, nicknames) } |