From c90240bbb8b161c1ab461c6a0d67e40501d7bb3a Mon Sep 17 00:00:00 2001 From: Liren Tu Date: Wed, 22 May 2024 22:10:46 -0700 Subject: [PATCH] Remove buffer size console log (#722) --- src/selectors/roughHeights.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/selectors/roughHeights.js b/src/selectors/roughHeights.js index 8f78cc01..04c20ec2 100644 --- a/src/selectors/roughHeights.js +++ b/src/selectors/roughHeights.js @@ -175,7 +175,6 @@ function getScrollStateX(columnElements, scrollFlags, width, scrollbarYWidth) { function getBufferRowCount(maxAvailableHeight, rowSettings) { const { bufferRowCount, rowHeight, subRowHeight } = rowSettings; if (bufferRowCount !== undefined) { - console.log('buffer set: ' + bufferRowCount); return bufferRowCount; }