Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?? '')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ performance]
Increasing the number of submissions fetched from 50 to 100 may impact performance, especially if the data size is large. Consider whether this change is necessary and if pagination or lazy loading could be a better approach.

return results
},
isPaused: () => !challengeId,
Expand Down
Loading