mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-28 09:12:37 +03:00
fix: remove console logs on frontend side (#2030)
fix: remove console logs
This commit is contained in:
parent
9296443e34
commit
31d67c1092
@ -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;
|
||||
}
|
||||
|
@ -27,8 +27,7 @@ export const DataTableRow = forwardRef<HTMLTableRowElement, DataTableRowProps>(
|
||||
TableRecoilScopeContext,
|
||||
);
|
||||
const { currentRowSelected } = useCurrentRowSelected();
|
||||
// eslint-disable-next-line no-console
|
||||
console.log({ visibleTableColumns });
|
||||
|
||||
return (
|
||||
<StyledRow
|
||||
ref={ref}
|
||||
|
@ -18,9 +18,6 @@ export const TableCell = ({
|
||||
}) => {
|
||||
const { fieldDefinition } = useContext(FieldContext);
|
||||
|
||||
// eslint-disable-next-line no-console
|
||||
console.log({ fieldDefinition });
|
||||
|
||||
const { closeTableCell } = useTableCell();
|
||||
|
||||
const { moveLeft, moveRight, moveDown } = useMoveSoftFocus();
|
||||
|
Loading…
Reference in New Issue
Block a user