Skip to content

Commit e9b030f

Browse files
authored
Merge pull request #4486 from simranb86/issue_4375_4376
fix for issue #4375 & #4376
2 parents bb61c2c + 607075b commit e9b030f

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/shared/actions/challenge-listing/index.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ const { getService } = services.challenge;
1414
const { getReviewOpportunitiesService } = services.reviewOpportunities;
1515

1616
/**
17-
* The maximum number of challenges to fetch in a single API call. Currently,
18-
* the backend never returns more than 50 challenges, even when a higher limit
19-
* was specified in the request. Thus, this constant should not be larger than
20-
* 50 (otherwise the frontend code will miss to load some challenges).
17+
* The maximum number of challenges to fetch in a single API call.
2118
*/
22-
const PAGE_SIZE = 50;
19+
const PAGE_SIZE = 99;
2320

2421
/**
2522
* The maximum number of review opportunities to fetch in a single API call.

src/shared/utils/challenge-listing/buckets.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ const BUCKET_DATA = {
4848
filter: {
4949
registrationOpen: true,
5050
started: true,
51-
currentPhaseName: 'Registration',
5251
status: ['Active'],
5352
},
5453
hideCount: false,

0 commit comments

Comments
 (0)