From 7055748b34e35354eee2e9b5a57adaf62d408440 Mon Sep 17 00:00:00 2001 From: Macbook Date: Mon, 8 Jun 2026 01:16:25 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=8C=EB=A6=BC=EB=AA=A9=EB=A1=9D=20?= =?UTF-8?q?=EA=B7=B8=EB=A6=AC=EB=93=9C=20=EB=AA=A9=EB=A1=9D=EA=B0=84=20?= =?UTF-8?q?=EA=B0=84=EA=B2=A9=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/common/VirtualScroll.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/common/VirtualScroll.tsx b/frontend/src/components/common/VirtualScroll.tsx index 0dc8e00..27649f1 100644 --- a/frontend/src/components/common/VirtualScroll.tsx +++ b/frontend/src/components/common/VirtualScroll.tsx @@ -169,7 +169,7 @@ function VirtualGridScrollInner( measureElement: measureDynamic ? el => { const h = el?.getBoundingClientRect().height ?? 0; - return h > 0 ? h : rowStride; + return h > 0 ? h + rowGap : rowStride; } : undefined, });