알림목록 그리드 목록간 간격 오류 수정

This commit is contained in:
Macbook
2026-06-08 01:16:25 +09:00
parent 567d45c6e3
commit 7055748b34
@@ -169,7 +169,7 @@ function VirtualGridScrollInner<T>(
measureElement: measureDynamic measureElement: measureDynamic
? el => { ? el => {
const h = el?.getBoundingClientRect().height ?? 0; const h = el?.getBoundingClientRect().height ?? 0;
return h > 0 ? h : rowStride; return h > 0 ? h + rowGap : rowStride;
} }
: undefined, : undefined,
}); });