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, });