Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Improve Withdraw info message
Browse files Browse the repository at this point in the history
  • Loading branch information
elias-garcia committed May 6, 2021
1 parent 998da46 commit e39d95c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ function TransactionAmount ({
case TxType.Withdraw:
case TxType.Exit:
case TxType.ForceExit: {
return <p className={classes.root}>- {currencySymbol}{(fiatAmount).toFixed(2)}</p>
return <p className={classes.root}>- {currencySymbol} {(fiatAmount).toFixed(2)}</p>
}
case TxType.Transfer:
case TxType.TransferToEthAddr: {
if (fromAccountIndex === accountIndex) {
return <p className={classes.root}>- {currencySymbol}{(fiatAmount).toFixed(2)}</p>
return <p className={classes.root}>- {currencySymbol} {(fiatAmount).toFixed(2)}</p>
} else {
return (
<p className={`${classes.root} ${classes.depositAmount}`}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function TransactionOverview ({
</p>
</div>
<p className={classes.exitEstimatedFeeHelperText}>
The estimated fee for step 2 of the withdrawal process is {getEstimatedWithdrawFee()} {CurrencySymbol[preferredCurrency].symbol}
The estimated gas fee for step 2 of the withdrawal process is {CurrencySymbol[preferredCurrency].symbol} {getEstimatedWithdrawFee()}
</p>
</div>
)
Expand Down

0 comments on commit e39d95c

Please sign in to comment.