Skip to content

Commit

Permalink
Fix My Tasks list view not showing pagination issue
Browse files Browse the repository at this point in the history
  • Loading branch information
royallsilwallz committed Oct 31, 2023
1 parent d560a76 commit f27b463
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/views/contributions.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ export const ContributionsPage = () => {
<section className="pb5 pt180 pull-center">
<MyTasksNav />
<TaskResults retryFn={forceUpdate} state={state} />
<ProjectCardPaginator projectAPIstate={state} setQueryParam={setContributionsQuery} />
<ProjectCardPaginator
projectAPIstate={state}
status={state.isLoading ? 'pending' : 'success'}
pagination={state?.pagination}
setQueryParam={setContributionsQuery}
/>
</section>
);
};
Expand Down

0 comments on commit f27b463

Please sign in to comment.