Fix react error when loading in dev:

Change Text component to div in DraggableRow for better semantic structure
This commit is contained in:
SergeantPanda 2025-05-04 09:51:15 -05:00
parent 4803a3605e
commit d1e9de6cdb

View file

@ -101,7 +101,7 @@ const DraggableRow = ({ row, index }) => {
}}
>
<Flex align="center" style={{ height: '100%' }}>
<Text size="xs">
<Text component="div" size="xs">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</Text>
</Flex>