Skip to content

Commit

Permalink
Fix issue #2179
Browse files Browse the repository at this point in the history
  • Loading branch information
rickycodes committed Jan 30, 2021
1 parent 4b6ea48 commit 63026ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TransactionReviewFeeCard extends PureComponent {
/**
* Total transaction value in fiat
*/
totalFiat: PropTypes.object,
totalFiat: PropTypes.string,
/**
* Transaction value in fiat before gas fee
*/
Expand Down Expand Up @@ -142,7 +142,7 @@ class TransactionReviewFeeCard extends PureComponent {
{!!totalFiat && this.renderIfGasEstimationReady(totalAmount)}
</Summary.Row>
<Summary.Row end last>
{this.renderIfGasEstimationReady(equivalentTotalAmount)}
{this.renderIfGasEstimationReady(<Text bold>{equivalentTotalAmount}</Text>)}
</Summary.Row>
</Summary>
);
Expand Down

0 comments on commit 63026ce

Please sign in to comment.