test(admin): fix broken test with Body.CheckboxDataCell

This commit is contained in:
Josh 2023-10-17 10:10:58 +01:00
parent 2ae466660e
commit f8586324c5

View File

@ -156,7 +156,9 @@ const SelectedEntriesTableContent = ({
<Table.Body>
{rowsToDisplay.map((row, index) => (
<Tr key={row.id}>
<Body.CheckboxDataCell rowId={row.id} index={index} />
<Td>
<Body.CheckboxDataCell rowId={row.id} index={index} />
</Td>
<Td>
<Typography>{row.id}</Typography>
</Td>