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) => onChange={(value) =>
setList(listKey, { setTableUpdate({
table: { size: value as 'compact' | 'default' }, size: value as 'compact' | 'default' | 'large',
}) })
} }
size="sm" size="sm"
value={table.size} value={table?.size ?? 'default'}
w="100%" w="100%"
/> />
), ),