From e39d95cb552f42ded3d6eb8e60b7a45e264b2fa3 Mon Sep 17 00:00:00 2001 From: Elias Date: Thu, 6 May 2021 12:46:05 +0200 Subject: [PATCH] Improve Withdraw info message --- .../components/transaction-amount/transaction-amount.view.jsx | 4 ++-- .../transaction-overview/transaction-overview.view.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/account-details/components/transaction-amount/transaction-amount.view.jsx b/src/views/account-details/components/transaction-amount/transaction-amount.view.jsx index ecc8b4df6..019fe502d 100644 --- a/src/views/account-details/components/transaction-amount/transaction-amount.view.jsx +++ b/src/views/account-details/components/transaction-amount/transaction-amount.view.jsx @@ -26,12 +26,12 @@ function TransactionAmount ({ case TxType.Withdraw: case TxType.Exit: case TxType.ForceExit: { - return

- {currencySymbol}{(fiatAmount).toFixed(2)}

+ return

- {currencySymbol} {(fiatAmount).toFixed(2)}

} case TxType.Transfer: case TxType.TransferToEthAddr: { if (fromAccountIndex === accountIndex) { - return

- {currencySymbol}{(fiatAmount).toFixed(2)}

+ return

- {currencySymbol} {(fiatAmount).toFixed(2)}

} else { return (

diff --git a/src/views/transaction/components/transaction-overview/transaction-overview.view.jsx b/src/views/transaction/components/transaction-overview/transaction-overview.view.jsx index 116e6dbaa..c44511e2f 100644 --- a/src/views/transaction/components/transaction-overview/transaction-overview.view.jsx +++ b/src/views/transaction/components/transaction-overview/transaction-overview.view.jsx @@ -196,7 +196,7 @@ function TransactionOverview ({

- 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()}

)