Skip to content

Commit

Permalink
chore: bump to 1.1.29
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Nov 14, 2023
1 parent d0cea90 commit ea4ed77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/climateWarehouseService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const climateWarehouseServiceApi = createApi({
hasMarketplaceIdentifier: true,
includeProjectInfoInSearch: true,
page: 1,
limit: 1000,
limit: 100,
},
method: 'get',
}),
Expand Down Expand Up @@ -50,7 +50,7 @@ export const climateWarehouseServiceApi = createApi({
getAllCWProject: builder.query({
query: () => ({
url: '/v1/projects',
params: { onlyMarketplaceProjects: true, page: 1, limit: 1000 },
params: { onlyMarketplaceProjects: true, page: 1, limit: 100 },
method: 'get',
}),
transformResponse: (response: any) => {
Expand Down

0 comments on commit ea4ed77

Please sign in to comment.