Skip to content

Commit

Permalink
Remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
busches authored Feb 23, 2022
1 parent d266ef0 commit 9fb2af1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/TableBodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ function TableBodyCell(props) {
tableId,
...otherProps
} = props;
console.log(props);
const onCellClick = options.onCellClick;

const handleClick = useCallback(
Expand Down Expand Up @@ -170,7 +169,6 @@ function TableBodyCell(props) {
{typeof children === 'function' ? children(dataIndex, rowIndex) : children}
</div>,
];
console.log('isEmty' + props.isEmpty);
var innerCells;
if (
['standard', 'scrollMaxHeight', 'scrollFullHeight', 'scrollFullHeightFullWidth'].indexOf(options.responsive) !==
Expand Down

0 comments on commit 9fb2af1

Please sign in to comment.