Skip to content

Commit

Permalink
fix wrong symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh committed Jul 20, 2023
1 parent a6e6279 commit f43a8e6
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default function AnnouncementItem({
minPrice,
currentPrice,
poolAddress,
token2Symbol,
} = position || {}
const isInRange = type === 'IN_RANGE'
const statusMessage = isInRange ? t`Back in range` : t`Out of range`
Expand Down Expand Up @@ -99,17 +98,17 @@ export default function AnnouncementItem({
<Detail>
<Text>
<Trans>
Current Market Price is {currentPrice} {token1Symbol} per {token2Symbol}
Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}
</Trans>
</Text>
<Text>
<Trans>
Min Price of your range is {minPrice} {token1Symbol} per {token2Symbol}
Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}
</Trans>
</Text>
<Text>
<Trans>
Max Price of your range is {maxPrice} {token1Symbol} per {token2Symbol}
Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}
</Trans>
</Text>
</Detail>
Expand Down

0 comments on commit f43a8e6

Please sign in to comment.