From 9fb2af133175fcd9da24e258ac8601201111b03a Mon Sep 17 00:00:00 2001 From: Scott Busche Date: Tue, 22 Feb 2022 19:31:38 -0600 Subject: [PATCH] Remove console.logs --- src/components/TableBodyCell.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/TableBodyCell.js b/src/components/TableBodyCell.js index 608290aaf..b7a47f35b 100644 --- a/src/components/TableBodyCell.js +++ b/src/components/TableBodyCell.js @@ -107,7 +107,6 @@ function TableBodyCell(props) { tableId, ...otherProps } = props; - console.log(props); const onCellClick = options.onCellClick; const handleClick = useCallback( @@ -170,7 +169,6 @@ function TableBodyCell(props) { {typeof children === 'function' ? children(dataIndex, rowIndex) : children} , ]; - console.log('isEmty' + props.isEmpty); var innerCells; if ( ['standard', 'scrollMaxHeight', 'scrollFullHeight', 'scrollFullHeightFullWidth'].indexOf(options.responsive) !==