Skip to content

Commit

Permalink
Merge pull request #1168 from Chia-Network/hotfix/1.2.11
Browse files Browse the repository at this point in the history
fix: pagination for myprojects action
  • Loading branch information
MichaelTaylor3D authored Mar 6, 2024
2 parents 771a0c4 + 31ee2b1 commit e23fb3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cadt-ui",
"version": "1.2.13",
"version": "1.2.14",
"private": true,
"author": "Chia Network Inc. <[email protected]>",
"homepage": "./",
Expand Down
2 changes: 1 addition & 1 deletion src/store/actions/climateWarehouseActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export const getMyProjects = myOrgUid => {

try {
const response = await fetchWrapper(
`${constants.API_HOST}/projects?orgUid=${myOrgUid}`,
`${constants.API_HOST}/projects?orgUid=${myOrgUid}&page=1&limit=500`,
);

if (response.ok) {
Expand Down

0 comments on commit e23fb3a

Please sign in to comment.