Skip to content

Commit

Permalink
Merge pull request #166 from Chia-Network/develop
Browse files Browse the repository at this point in the history
Release 1.1.29
  • Loading branch information
MichaelTaylor3D authored Nov 14, 2023
2 parents aad41c4 + ea4ed77 commit 9d61f59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Chia Network <hello@chia.net> (https://chia.net/)",
"description": "Climate Wallet for Chia Blockchain",
"productName": "Climate Wallet",
"version": "1.1.28",
"version": "1.1.29",
"private": true,
"homepage": "./",
"main": "build/electron/main.js",
Expand Down
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 9d61f59

Please sign in to comment.