diff --git a/front/src/modules/ui/data/data-table/components/DataTableCell.tsx b/front/src/modules/ui/data/data-table/components/DataTableCell.tsx index 0b3340fb41..0e9ffe0cdf 100644 --- a/front/src/modules/ui/data/data-table/components/DataTableCell.tsx +++ b/front/src/modules/ui/data/data-table/components/DataTableCell.tsx @@ -37,9 +37,6 @@ export const DataTableCell = ({ cellIndex }: { cellIndex: number }) => { const updateEntityMutation = useContext(EntityUpdateMutationContext); - // eslint-disable-next-line no-console - console.log({ columnDefinition, currentRowId }); - if (!columnDefinition || !currentRowId) { return null; } diff --git a/front/src/modules/ui/data/data-table/components/DataTableRow.tsx b/front/src/modules/ui/data/data-table/components/DataTableRow.tsx index d6f8eef9d2..0515d6bc0f 100644 --- a/front/src/modules/ui/data/data-table/components/DataTableRow.tsx +++ b/front/src/modules/ui/data/data-table/components/DataTableRow.tsx @@ -27,8 +27,7 @@ export const DataTableRow = forwardRef( TableRecoilScopeContext, ); const { currentRowSelected } = useCurrentRowSelected(); - // eslint-disable-next-line no-console - console.log({ visibleTableColumns }); + return ( { const { fieldDefinition } = useContext(FieldContext); - // eslint-disable-next-line no-console - console.log({ fieldDefinition }); - const { closeTableCell } = useTableCell(); const { moveLeft, moveRight, moveDown } = useMoveSoftFocus();