diff --git a/src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx b/src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx index 82883fb130..384eb52d65 100644 --- a/src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx +++ b/src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx @@ -60,6 +60,7 @@ 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` @@ -97,13 +98,19 @@ export default function AnnouncementItem({ {expand && ( - Current Market Price is {currentPrice} USDT per stMatic + + Current Market Price is {currentPrice} {token1Symbol} per {token2Symbol} + - Min Price of your range is {minPrice} USDT per stMatic + + Min Price of your range is {minPrice} {token1Symbol} per {token2Symbol} + - Max Price of your range is {maxPrice} USDT per stMatic + + Max Price of your range is {maxPrice} {token1Symbol} per {token2Symbol} + )}