Skip to content

Commit

Permalink
fix(api): add limit to request
Browse files Browse the repository at this point in the history
  • Loading branch information
JayWeee committed Feb 1, 2024
1 parent ecb6b9d commit 0f53c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class Api {
}

getListFilteredCarWash(querry) {
return fetch(`${this.#baseurl}/api/carwashes/?${querry}`, {
return fetch(`${this.#baseurl}/api/carwashes/?${querry}&limit=50`, {
headers: {
...this.#headers,
},
Expand Down

0 comments on commit 0f53c19

Please sign in to comment.