From f42d5c564385c3d3693944abf319d69e846c0102 Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Wed, 17 Dec 2025 12:42:42 +0200 Subject: [PATCH] temp fix PS-490 --- src/apps/review/src/lib/hooks/useFetchChallengeSubmissions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,