Skip to content

Commit

Permalink
fix: Add merkl tag
Browse files Browse the repository at this point in the history
  • Loading branch information
memoyil committed Dec 31, 2024
1 parent 65c2333 commit 3376867
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/web/src/pages/v2/pair/[[...currency]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ import { useRouter } from 'next/router'
import { useAccount } from 'wagmi'
import { useAccountPositionDetailByPool } from 'state/farmsV4/state/accountPositions/hooks'
import { usePoolInfo } from 'state/farmsV4/state/extendPools/hooks'
import { useMemo } from 'react'
import React, { useMemo } from 'react'
import { formatFiatNumber } from '@pancakeswap/utils/formatFiatNumber'
import { useTotalPriceUSD } from 'hooks/useTotalPriceUSD'
import { useLPApr } from 'state/swap/useLPApr'
import { formatAmount } from 'utils/formatInfoNumbers'
import { MerklSection } from 'components/Merkl/MerklSection'
import { MerklTag } from 'components/Merkl/MerklTag'

export const BodyWrapper = styled(Card)`
border-radius: 24px;
Expand Down Expand Up @@ -147,6 +148,7 @@ export default function PoolV2Page() {
<Heading as="h2" ml="8px">
{pair?.token0?.symbol}-{pair?.token1?.symbol} LP
</Heading>
<MerklTag poolAddress={pair?.liquidityToken?.address} />
</Flex>
}
backTo="/liquidity/positions"
Expand Down

0 comments on commit 3376867

Please sign in to comment.