Skip to content

Commit c82698e

Browse files
committed
fix: ops
1 parent 21c0cf5 commit c82698e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface Options<T> {
2424
export function Table<T>({ loading, content, columns, size, variant }: Options<T>) {
2525
return (
2626
<TableContainer>
27-
<ChakraUiTable minHeight="520px" size={size} variant={variant}>
27+
<ChakraUiTable size={size} variant={variant}>
2828
<Thead>
2929
<Tr>
3030
{columns.map(({ title: name, property, options }, index) => (

0 commit comments

Comments
 (0)