We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d2cd38 commit 38ce9dfCopy full SHA for 38ce9df
packages/infinitegrid/src/InfiniteGrid.ts
@@ -929,8 +929,8 @@ class InfiniteGrid<Options extends InfiniteGridOptions = InfiniteGridOptions> ex
929
930
// 같아야 비교대상이 되고 위치 보정이 가능하다.
931
const nextParts = nextVisibleArea?.parts ?? [];
932
- const prevVisibleParts = prevParts.filter(p => p.pos !== INVISIBLE_POS);
933
- const nextVisibleParts = nextParts.filter(p => p.pos !== INVISIBLE_POS);
+ const prevVisibleParts = prevParts.filter((p) => p.pos !== INVISIBLE_POS);
+ const nextVisibleParts = nextParts.filter((p) => p.pos !== INVISIBLE_POS);
934
if (
935
nextVisibleArea
936
// 커서가 시작이 아니어야 그룹들의 위치 보정이 가능하다.
0 commit comments