Skip to content

Commit

Permalink
Merge pull request #866 from MirzaHanan/feat/increase-bounty-paginati…
Browse files Browse the repository at this point in the history
…on-limit
  • Loading branch information
humansinstitute authored Jan 5, 2025
2 parents d0146c6 + a413e76 commit 8d8f679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/store/__test__/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions src/store/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8d8f679

Please sign in to comment.