Skip to content

Commit

Permalink
Fix confirmation modal
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBenc committed Feb 28, 2021
1 parent 3979977 commit 6b1effa
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -58,8 +58,6 @@ const SendAdaReview = ({
<div className="review-amount">
{printAda((summarySendAmount + minimalLovelaceAmount) as Lovelace)}
</div>
<div className="ada-label">Fee</div>
<div className="review-fee">{printAda(transactionSummary.fee as Lovelace)}</div>
{summaryToken && (
<Fragment>
<div className="review-label">Token policy Id</div>
Expand All @@ -72,6 +70,8 @@ const SendAdaReview = ({
<div className="review-amount">{printAda(minimalLovelaceAmount)}</div> */}
</Fragment>
)}
<div className="ada-label">Fee</div>
<div className="review-fee">{printAda(transactionSummary.fee as Lovelace)}</div>
{/* TODO: Hide ADA symbol when handling tokens */}
<div className="ada-label">Total</div>
<div className="review-total">{printAda(total)}</div>
Expand Down

0 comments on commit 6b1effa

Please sign in to comment.