diff --git a/src/store/__test__/main.spec.ts b/src/store/__test__/main.spec.ts index 77d30f3a..23204db9 100644 --- a/src/store/__test__/main.spec.ts +++ b/src/store/__test__/main.spec.ts @@ -1188,10 +1188,10 @@ describe('Main store', () => { }); }); - it('should return filter by languages, status response', async () => { + it('should return filter by the languages, status, and other criteria', async () => { const store = new MainStore(); const filterCriteria = { - limit: 10, + limit: 25, page: 1, sortBy: 'created', coding_languages: 'Typescript', diff --git a/src/store/interface.ts b/src/store/interface.ts index cf829142..af5d7eac 100644 --- a/src/store/interface.ts +++ b/src/store/interface.ts @@ -393,9 +393,9 @@ export const defaultBountyStatus: BountyStatus = { }; export const queryLimitTribes = 100; -export const queryLimit = 10; +export const queryLimit = 25; export const orgQuerLimit = 500; -export const paginationQueryLimit = 20; +export const paginationQueryLimit = 25; export const peopleQueryLimit = 500; export const featureLimit = 4; export const phaseBountyLimit = 3;