diff --git a/liquidity/components/PoolBox/PoolBox.tsx b/liquidity/components/PoolBox/PoolBox.tsx index cc28ed616..25d314609 100644 --- a/liquidity/components/PoolBox/PoolBox.tsx +++ b/liquidity/components/PoolBox/PoolBox.tsx @@ -1,4 +1,4 @@ -import { Box, Button, Flex, Heading, Skeleton, Text, Tooltip } from '@chakra-ui/react'; +import { Box, Button, Flex, Heading, Skeleton, Text } from '@chakra-ui/react'; import { BorderBox } from '@snx-v3/BorderBox'; import { FC } from 'react'; import { usePoolData } from '@snx-v3/usePoolData'; @@ -6,19 +6,16 @@ import { calculatePoolPerformanceSevenDays } from '@snx-v3/calculations'; import { generatePath, Link, useLocation } from 'react-router-dom'; import { Wei } from '@synthetixio/wei'; import { useParams } from '@snx-v3/useParams'; -import { InfoIcon } from '@chakra-ui/icons'; -import { TrendText } from '@snx-v3/TrendText'; -import { currency } from '@snx-v3/format'; import { usePool } from '@snx-v3/usePools'; const PoolBoxUi: FC<{ poolName?: string; poolId?: string; sevenDaysPoolPerformanceGrowth?: Wei; -}> = ({ poolName, poolId, sevenDaysPoolPerformanceGrowth }) => { +}> = ({ poolName, poolId }) => { const location = useLocation(); return ( - + {poolId ? ( @@ -37,19 +34,6 @@ const PoolBoxUi: FC<{ )} - {sevenDaysPoolPerformanceGrowth && ( - - - Performance Last 7 Days{' '} - - - - - - {currency(sevenDaysPoolPerformanceGrowth, { style: 'percent' })} - - - )} {poolId && (