Skip to content

Commit

Permalink
fix: pagination for myprojects action
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Mar 6, 2024
1 parent 2993d7e commit f0f07c7
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.10",
"version": "1.2.11",
"private": true,
"author": "Chia Network Inc. <hello@chia.net>",
"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 f0f07c7

Please sign in to comment.