Skip to content

Commit 502eadd

Browse files
committed
chore: fix lint
1 parent 1afa145 commit 502eadd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/infinitegrid/src/Infinite.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ export class Infinite extends Component<InfiniteEvents> {
507507
let startCursor = Infinity;
508508
let endCursor = -1;
509509

510-
nextPartInfos.forEach(part => {
510+
nextPartInfos.forEach((part) => {
511511
startCursor = Math.min(part.itemIndex, startCursor);
512512
endCursor = Math.min(part.itemIndex, endCursor);
513513
});
@@ -544,7 +544,7 @@ export class Infinite extends Component<InfiniteEvents> {
544544

545545
minParts.push([minDist, {
546546
part,
547-
itemIndex: items.findIndex(allItem => allItem.key === item.key),
547+
itemIndex: items.findIndex((allItem) => allItem.key === item.key),
548548
}]);
549549
});
550550
});

0 commit comments

Comments
 (0)