diff --git a/src/app/schedule/_components/history.tsx b/src/app/schedule/_components/history.tsx index f7773e04..cee6eb48 100644 --- a/src/app/schedule/_components/history.tsx +++ b/src/app/schedule/_components/history.tsx @@ -12,12 +12,7 @@ export default function History() { const { items, error, fetchNextPage, hasNextPage, isFetchingNextPage, completedMessage } = useInfiniteScroll({ queryFn: async ({ cursor, size }) => { - return await API.groupService.getMyGroups({ - type: 'past', - cursor, - size, - filter: 'ALL', - }); + return await API.groupService.getMyGroups({ type: 'past', cursor, size }); }, queryKey: ['myGroups', 'past'], pageSize: 10,