Skip to content

Commit

Permalink
Merge pull request #138 from ar-io/increase-limits
Browse files Browse the repository at this point in the history
chore(limits): increase limits
  • Loading branch information
kunstmusik authored Jan 27, 2025
2 parents 01ff9d6 + 0f819c9 commit cd35b4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hooks/useDelegateStakes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const useDelegateStakes = (address?: string) => {
const pageResult = await arIOReadSDK.getDelegations({
address,
cursor,
limit: 10,
limit: 100,
});

pageResult.items.forEach((d) => {
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGatewayDelegates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const useGatewayDelegateStakes = (address?: string) => {
const pageResult = await arIOReadSDK.getGatewayDelegates({
address,
cursor,
limit: 10,
limit: 100,
});

results = results.concat(pageResult.items);
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGatewayVaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const useGatewayVaults = (address?: string) => {
const pageResult = await arIOReadSDK.getGatewayVaults({
address,
cursor,
limit: 10,
limit: 100,
});

results = results.concat(pageResult.items);
Expand Down

0 comments on commit cd35b4d

Please sign in to comment.