Skip to content

Commit

Permalink
Merge pull request #165 from Chia-Network/develop
Browse files Browse the repository at this point in the history
Release: 1.1.28
  • Loading branch information
MichaelTaylor3D authored Nov 14, 2023
2 parents edaae9a + a7cdd91 commit 10dcfc2
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.27",
"version": "1.1.28",
"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: 50,
limit: 1000,
},
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: 50 },
params: { onlyMarketplaceProjects: true, page: 1, limit: 1000 },
method: 'get',
}),
transformResponse: (response: any) => {
Expand Down

0 comments on commit 10dcfc2

Please sign in to comment.