Skip to content

Commit 4ff2034

Browse files
authored
fix broken tables on account tab (#1373)
1 parent a26cd68 commit 4ff2034

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

www/src/components/account/GroupsList.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ export function GroupsList({ q }: any) {
2222
const { edges, pageInfo } = data.groups
2323

2424
return (
25-
<Div
26-
flexGrow={1}
27-
maxHeight="max-content"
28-
>
25+
<Div flexGrow={1}>
2926
{edges?.length ? (
3027
<StandardScroller
3128
listRef={listRef}

www/src/components/utils/List.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ const List = forwardRef<HTMLDivElement, ListProps>(
9393
padding={0}
9494
margin={0}
9595
flexGrow={1}
96-
maxHeight="min-content"
9796
{...props}
9897
overflow="hidden"
9998
as={Ul}

0 commit comments

Comments
 (0)