Skip to content
This repository has been archived by the owner on Dec 5, 2021. It is now read-only.

Commit

Permalink
Update DoExitStep.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Liphardt committed May 1, 2021
1 parent 47392d6 commit 39fe034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wallet/src/containers/modals/exit/steps/DoExitStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function DoExitStep ({
</h3>
}

{fast && currencySymbols[currency] != 'oETH' &&
{fast && currencySymbols[currency] !== 'oETH' &&
<h3>
The L1 liquidity pool has {LPBalance} {currencySymbols[currency]}.
The liquidity fee is {feeRate}%. {value && `You will receive ${(Number(value) * 0.97).toFixed(2)} ${currencySymbols[currency]} on L1.`}
Expand All @@ -153,7 +153,7 @@ function DoExitStep ({
</h3>
}

{!fast && currencySymbols[currency] != 'oETH' &&
{!fast && currencySymbols[currency] !== 'oETH' &&
<h3>
{value && `You will receive ${Number(value).toFixed(2)} ${currencySymbols[currency]} on L1. Your funds will be available on L1 in 7 days.`}
</h3>
Expand Down

0 comments on commit 39fe034

Please sign in to comment.