Skip to content

Commit 38ce9df

Browse files
committed
chore: fix lint
1 parent 9d2cd38 commit 38ce9df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/infinitegrid/src/InfiniteGrid.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,8 +929,8 @@ class InfiniteGrid<Options extends InfiniteGridOptions = InfiniteGridOptions> ex
929929

930930
// 같아야 비교대상이 되고 위치 보정이 가능하다.
931931
const nextParts = nextVisibleArea?.parts ?? [];
932-
const prevVisibleParts = prevParts.filter(p => p.pos !== INVISIBLE_POS);
933-
const nextVisibleParts = nextParts.filter(p => p.pos !== INVISIBLE_POS);
932+
const prevVisibleParts = prevParts.filter((p) => p.pos !== INVISIBLE_POS);
933+
const nextVisibleParts = nextParts.filter((p) => p.pos !== INVISIBLE_POS);
934934
if (
935935
nextVisibleArea
936936
// 커서가 시작이 아니어야 그룹들의 위치 보정이 가능하다.

0 commit comments

Comments
 (0)