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

Commit

Permalink
Merge pull request #468 from hermeznetwork/improve-withdraw-info-message
Browse files Browse the repository at this point in the history
Improve withdraw info message
  • Loading branch information
elias-garcia authored May 6, 2021
2 parents 998da46 + e39d95c commit 35e9855
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 35e9855

Please sign in to comment.