Skip to content

Commit

Permalink
fix pools 2
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev committed Dec 20, 2024
1 parent 82ed4c7 commit 0b4e3e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/pools/PoolsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Props = {

const PoolsTable = ({ items, page, isLoading, top }: Props) => {
return (
<Table>
<Table minWidth="900px">
<Thead top={ top ?? ACTION_BAR_HEIGHT_DESKTOP }>
<Tr>
<Th width="70%">Pool</Th>
Expand Down
2 changes: 1 addition & 1 deletion ui/pools/PoolsTableItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const PoolsTableItem = ({
<Skeleton isLoaded={ !isLoading }>
<Text px={ 2 }>{ getItemIndex(index, page) }</Text>
</Skeleton>
<Box>
<Box overflow="hidden">
<PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/>
<AddressEntity
address={{ hash: item.contract_address }}
Expand Down

0 comments on commit 0b4e3e3

Please sign in to comment.