Commit 95030a52 authored by Moody Salem's avatar Moody Salem

fix(remove liquidity): price display in remove liquidity incorrect

parent 1911f725
...@@ -634,14 +634,7 @@ export default function RemoveLiquidity({ ...@@ -634,14 +634,7 @@ export default function RemoveLiquidity({
<RowBetween> <RowBetween>
<div /> <div />
<div> <div>
1 {currencyB?.symbol} ={' '} 1 {currencyB?.symbol} = {tokenB ? pair.priceOf(tokenB).toSignificant(6) : '-'} {currencyA?.symbol}
{tokenB
? pair
.priceOf(tokenB)
.invert()
.toSignificant(6)
: '-'}{' '}
{currencyA?.symbol}
</div> </div>
</RowBetween> </RowBetween>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment