Skip to content

Commit ada35d2

Browse files
committed
chore: remove console
1 parent e237b55 commit ada35d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Header/useCellResize.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function useCellResize(
5656
const offset = event.pageX - startPageX.current;
5757
const oldWidth = colsWidths.get(columnKey);
5858
let newWidth = startRealWidth.current + (isEndHandle ? offset : -offset);
59-
console.log('colsWidths', colsWidths);
59+
6060
if (newWidth < minWidth) {
6161
newWidth = minWidth;
6262
}
@@ -87,7 +87,7 @@ export default function useCellResize(
8787
columnKey: key,
8888
width,
8989
}));
90-
console.log('componentWidth', componentWidth);
90+
9191
onColumnResizeEnd?.({ columnKey, width: newWidth, columnWidths });
9292
}
9393
});

0 commit comments

Comments
 (0)