We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fbd22a commit a5479b1Copy full SHA for a5479b1
packages/roomkit-react/src/Prebuilt/components/Polls/Voting/useQuizSummary.tsx
@@ -24,7 +24,7 @@ export const useQuizSummary = (quizID: string) => {
24
useEffect(() => {
25
const fetchLeaderboardData = async () => {
26
if (!quizLeaderboard && quiz && !quiz?.anonymous && quiz.state === 'stopped') {
27
- const leaderboardData = await hmsActions.interactivityCenter.fetchLeaderboard(quiz.id, 0, 50);
+ const leaderboardData = await hmsActions.interactivityCenter.fetchLeaderboard(quiz.id, 0, 200);
28
29
const { maxPossibleScore, totalResponses } =
30
quiz?.questions?.reduce((accumulator, question) => {
0 commit comments