Skip to content

Commit

Permalink
fix: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
LufyCZ committed Jan 27, 2025
1 parent 87d5481 commit 03f0488
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Currency } from '@sushiswap/ui'
import React, { FC, useCallback, useMemo, useState } from 'react'
import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types'
import { Checker } from 'src/lib/wagmi/systems/Checker'
import { Chain, ChainId } from 'sushi/chain'
import { EvmChain, EvmChainId } from 'sushi/chain'
import {
SUSHISWAP_V3_POSTIION_MANAGER,
isSushiSwapV3ChainId,
Expand All @@ -39,7 +39,7 @@ import { useTokenAmountDollarValues } from '../../lib/hooks'

interface ConcentratedLiquidityCollectAllWidget {
positions: ConcentratedLiquidityPositionWithV3Pool[]
chainId: ChainId
chainId: EvmChainId
account: `0x${string}` | undefined
}

Expand Down Expand Up @@ -253,7 +253,7 @@ export const ConcentratedLiquidityCollectAllWidget: FC<
<DialogHeader>
<DialogTitle>Claim V3 Fees</DialogTitle>
<DialogDescription>
On {Chain.from(chainId)?.name}
On {EvmChain.from(chainId)?.name}
</DialogDescription>
</DialogHeader>
<div className="flex flex-col gap-4">
Expand Down

0 comments on commit 03f0488

Please sign in to comment.