Skip to content

Commit

Permalink
[B] Fix pagination on RG members table
Browse files Browse the repository at this point in the history
  • Loading branch information
1aurend committed Feb 12, 2024
1 parent f2e8ce4 commit e4675db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function MembersListContainer({ route, dispatch, confirm, readingGroup }) {
const [pagination, setPageNumber] = usePaginationState(1, 10);

const { data: members, meta, refresh } = useFetch({
request: [readingGroupsAPI.members, id, pagination]
request: [readingGroupsAPI.members, id, null, pagination]
});

useSetLocation({ page: pagination.number });
Expand Down

0 comments on commit e4675db

Please sign in to comment.