fix size configuration toggle

This commit is contained in:
jeffvli
2026-02-09 20:54:16 -08:00
parent ac40949572
commit 7344758114
@@ -176,12 +176,12 @@ export const TableConfig = ({
},
]}
onChange={(value) =>
setList(listKey, {
table: { size: value as 'compact' | 'default' },
setTableUpdate({
size: value as 'compact' | 'default' | 'large',
})
}
size="sm"
value={table.size}
value={table?.size ?? 'default'}
w="100%"
/>
),