From 21f17214be854bf07f44b0d388329ae33598d79c Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 7 Jul 2016 11:39:24 -0700 Subject: Remove formatBalance.formatted references --- ui/app/components/pending-tx-details.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index 8ecca856a..191f5d142 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -51,7 +51,7 @@ PTXP.render = function () { attrs: [ identity.name, addressSummary(address, 6, 4, false), - formatBalance(balance).formatted, + formatBalance(balance), ], imageSeed: address, imageifyIdenticons: props.imageifyIdenticons, @@ -88,12 +88,12 @@ PTXP.render = function () { h('.row', [ h('.cell.label', 'Amount'), - h('.cell.value', formatBalance(txParams.value).formatted), + h('.cell.value', formatBalance(txParams.value)), ]), h('.cell.row', [ h('.cell.label', 'Max Transaction Fee'), - h('.cell.value', formatBalance(gasCost).formatted), + h('.cell.value', formatBalance(gasCost)), ]), h('.cell.row', { @@ -103,7 +103,7 @@ PTXP.render = function () { }, }, [ h('.cell.label', 'Max Total'), - h('.cell.value', formatBalance(maxCost).formatted), + h('.cell.value', formatBalance(maxCost)), ]), h('.cell.row', { -- cgit