Skip to content

Commit

Permalink
Pass correct group sizes to "GroupedVirtuoso" (#537)
Browse files Browse the repository at this point in the history
One item was always hidden from the list.
Noticed during searching for a specific extension, which caused the list to only have one item, which was not shown

Was incorrectly changed with db65b9d
  • Loading branch information
schroda authored Jan 3, 2024
1 parent db65b9d commit 779dafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Extensions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function Extensions() {
);

const groupCounts = useMemo(
() => filteredGroupedExtensions.map((extensionGroup) => extensionGroup[EXTENSIONS].length - 1),
() => filteredGroupedExtensions.map((extensionGroup) => extensionGroup[EXTENSIONS].length),
[filteredGroupedExtensions],
);
const visibleExtensions = useMemo(
Expand Down

0 comments on commit 779dafe

Please sign in to comment.