Skip to content

Commit

Permalink
fixed the "load more" button
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdc committed Feb 12, 2025
1 parent f756f01 commit 689b68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const Group = ({ type, children, group }: GroupProps) => {
};

const hasMore =
!!linkedFolder && linkedFolder.files.length < linkedFolder.offset;
!!linkedFolder && linkedFolder.files.length > linkedFolder.offset;

useEffect(() => {
if (
Expand Down

0 comments on commit 689b68a

Please sign in to comment.