Skip to content

Commit

Permalink
chore: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
ychhabra-eightfold committed Feb 27, 2023
1 parent f4eb96d commit 1ed3296
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Table/Internal/OcTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -509,11 +509,10 @@ function OcTable<RecordType extends DefaultRecordType>(
onRow={onRow}
emptyNode={emptyNode}
childrenColumnName={mergedChildrenColumnName}
onRowHoverEnter={(i, r, e) => {
const hoveredCell = e.target as HTMLElement;
onRowHoverEnter={(index, key, event) => {
const hoveredCell = event.target as HTMLElement;
setHoveredRowBoundingRect(hoveredCell.getBoundingClientRect());
console.log(hoveredCell.getBoundingClientRect());
onRowHoverEnter?.(i, r, e);
onRowHoverEnter?.(index, key, event);
}}
onRowHoverLeave={onRowHoverLeave}
/>
Expand Down

0 comments on commit 1ed3296

Please sign in to comment.