Skip to content

Commit

Permalink
limit pagination for devs
Browse files Browse the repository at this point in the history
  • Loading branch information
lpofredc committed Dec 17, 2024
1 parent 4d8946d commit 2251c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/sensitive-areas.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export function getSensitiveAreas(api: string, language: string, inBbox : string
let requestUrl = `${api}sensitivearea/`;
const params: SearchParams = {
language: language,
no_page: 1,
// page_size: '10',
// no_page: 1,
page_size: '10',
fields: fields.toString()
}
inBbox && (params.in_bbox = inBbox);
Expand Down

0 comments on commit 2251c5d

Please sign in to comment.