Skip to content

Commit 4162eed

Browse files
fix(Table): remove fixed layout
Remove the Table `layout` prop that was set to fixed so it can go back to the default of auto and allow cells to expand width based on content.
1 parent cfc5ab7 commit 4162eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Table = (props: TableProps) => {
1919
const { variant, ...rest } = props
2020
return (
2121
<TableContainer whiteSpace="normal">
22-
<ChakraTable layout="fixed" variant={variant} {...rest} />
22+
<ChakraTable variant={variant} {...rest} />
2323
</TableContainer>
2424
)
2525
}

0 commit comments

Comments
 (0)