Commit fcfadbc0 authored by isstuev's avatar isstuev Committed by tom goriunov

fix pool address truncation

parent 79b9c21d
......@@ -23,7 +23,7 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => {
<Tr>
<Th width="70%">Pool</Th>
<Th width="30%">DEX </Th>
<Th width="120px" isNumeric>
<Th width="130px" isNumeric>
<Flex alignItems="center" justifyContent="end">
FDV
<Hint
......@@ -33,8 +33,8 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => {
/>
</Flex>
</Th>
<Th width="120px" isNumeric>Market cap</Th>
<Th width="120px" isNumeric>Liquidity</Th>
<Th width="130px" isNumeric>Market cap</Th>
<Th width="130px" isNumeric>Liquidity</Th>
<Th width="75px" isNumeric>View in</Th>
</Tr>
</Thead>
......
......@@ -33,7 +33,12 @@ const PoolsTableItem = ({
</Skeleton>
<Box>
<PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/>
<AddressEntity address={{ hash: item.contract_address }} noIcon isLoading={ isLoading }/>
<AddressEntity
address={{ hash: item.contract_address }}
noIcon
isLoading={ isLoading }
truncation="constant_long"
/>
</Box>
</Flex>
</Td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment