diff --git a/src/components/Coaching/CoachingList.tsx b/src/components/Coaching/CoachingList.tsx index 234410e79..77bd4d6f9 100644 --- a/src/components/Coaching/CoachingList.tsx +++ b/src/components/Coaching/CoachingList.tsx @@ -39,6 +39,7 @@ const CoachingLoading = styled(Skeleton)(() => ({ export const CoachingList: React.FC = ({ accountListId, }) => { + // This needs to become a infinite scroll query const { data, loading } = useLoadCoachingListQuery(); const { t } = useTranslation(); diff --git a/src/components/Coaching/LoadCoachingList.graphql b/src/components/Coaching/LoadCoachingList.graphql index e521e1871..26a8b6f5b 100644 --- a/src/components/Coaching/LoadCoachingList.graphql +++ b/src/components/Coaching/LoadCoachingList.graphql @@ -1,5 +1,5 @@ query LoadCoachingList { - coachingAccountLists(first: 25) { + coachingAccountLists(first: 100) { nodes { ...CoachedPerson }