Skip to content

Commit

Permalink
[@mantine/spotlight] FIX #6620: spotlight limit prop
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkeJohn committed Aug 3, 2024
1 parent 69962c5 commit 46e08e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@mantine/spotlight/src/limit-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function limitActions(actions: SpotlightActions[], limit: number) {
count += groupActions.length;
} else {
acc.push(item);
count++;
count += 1;
}

return acc;
Expand Down

0 comments on commit 46e08e2

Please sign in to comment.