Skip to content

Commit

Permalink
Fixing error with lists not showing correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bizz committed Jun 7, 2024
1 parent ce29847 commit b85e712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InfiniteList/InfiniteList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const InfiniteList = <T, C>({
<Loading Skeleton={Skeleton} numberOfSkeletons={numberOfSkeletons} />
)}

{!!!groupCounts.length && (
{!!groupCounts.length && (
<GroupedVirtuoso
groupCounts={groupCounts}
groupContent={(index) => (
Expand All @@ -142,7 +142,7 @@ export const InfiniteList = <T, C>({
{...commonProps}
/>
)}
{!!groupCounts.length && (
{!groupCounts.length && (
<Virtuoso
data={items}
itemContent={(index) =>
Expand Down

0 comments on commit b85e712

Please sign in to comment.