Skip to content

Commit 7b88648

Browse files
committed
fix: remove unnecessary console.log
1 parent 4043fac commit 7b88648

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

packages/table-plugin/src/HTMLTable.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ function findHeight({
8484
computeHeuristicContentHeight: (tableStats: HTMLTableStats) => number;
8585
contentHeight: number | null;
8686
} & HTMLTableStats) {
87-
console.log('findHeight');
8887
if (typeof contentHeight === 'number') {
8988
return computeContainerHeight({
9089
type: 'accurate',
@@ -138,15 +137,6 @@ function useAnimatedAutoheight<WVP extends MinimalWebViewProps>({
138137
webshellProps: webViewProps as any,
139138
resetHeightOnViewportWidthChange: false
140139
});
141-
console.log({
142-
computeContainerHeight,
143-
computeHeuristicContentHeight,
144-
'contentSize.height': contentSize.height,
145-
syncState,
146-
numOfChars,
147-
numOfColumns,
148-
numOfRows
149-
});
150140
const containerHeight = useMemo(
151141
() =>
152142
findHeight({

0 commit comments

Comments
 (0)