Skip to content

Commit e23fb3a

Browse files
Merge pull request #1168 from Chia-Network/hotfix/1.2.11
fix: pagination for myprojects action
2 parents 771a0c4 + 31ee2b1 commit e23fb3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cadt-ui",
3-
"version": "1.2.13",
3+
"version": "1.2.14",
44
"private": true,
55
"author": "Chia Network Inc. <[email protected]>",
66
"homepage": "./",

src/store/actions/climateWarehouseActions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export const getMyProjects = myOrgUid => {
305305

306306
try {
307307
const response = await fetchWrapper(
308-
`${constants.API_HOST}/projects?orgUid=${myOrgUid}`,
308+
`${constants.API_HOST}/projects?orgUid=${myOrgUid}&page=1&limit=500`,
309309
);
310310

311311
if (response.ok) {

0 commit comments

Comments
 (0)