Skip to content

Commit

Permalink
fix: skip just 10 at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Apr 11, 2023
1 parent 5239cc4 commit c0cf5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/routes/account/users.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const Users = () => {
return;
}

setSkip(skip + 20);
setSkip(skip + 10);

setUsers([...users, ...moreUsers]);
};
Expand Down

0 comments on commit c0cf5e8

Please sign in to comment.