diff --git a/src/apps/review/src/lib/hooks/useFetchChallengeSubmissions.ts b/src/apps/review/src/lib/hooks/useFetchChallengeSubmissions.ts index 4c28a8ac0..b4482b9ea 100644 --- a/src/apps/review/src/lib/hooks/useFetchChallengeSubmissions.ts +++ b/src/apps/review/src/lib/hooks/useFetchChallengeSubmissions.ts @@ -40,7 +40,7 @@ export function useFetchChallengeSubmissions( Error >(`reviewBaseUrl/submissions/${challengeId}`, { fetcher: async () => { - const results = await fetchSubmissions(1, 50, challengeId ?? '') + const results = await fetchSubmissions(1, 100, challengeId ?? '') return results }, isPaused: () => !challengeId,