diff --git a/src/components/PositionListItem/index.tsx b/src/components/PositionListItem/index.tsx index e5a58c11ab..0029e1ce37 100644 --- a/src/components/PositionListItem/index.tsx +++ b/src/components/PositionListItem/index.tsx @@ -202,8 +202,8 @@ export default function PositionListItem({ positionDetails }: PositionListItemPr // prices let { priceLower, priceUpper, base, quote } = getPriceOrderingFromPositionForUI(position) const inverted = token1 ? base?.equals(token1) : undefined - const currencyQuote = inverted ? currency0 : currency1 - const currencyBase = inverted ? currency1 : currency0 + const currencyQuote = inverted ? currency1 : currency0 + const currencyBase = inverted ? currency0 : currency1 // check if price is within range const outOfRange: boolean = pool ? pool.tickCurrent < tickLower || pool.tickCurrent >= tickUpper : false