Skip to content

Commit

Permalink
fix: searchGMP error due to page size exceeds limit (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
npty authored Jan 23, 2025
1 parent 8642ccd commit 3761845
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,8 @@ export function useDeployAndRegisterRemoteCanonicalTokenMutation(
destinationChainNames,
};
}, [
chainId,
combinedComputed.indexedById,
input?.destinationChainIds,
input?.sourceChainId,
]);

const multicallArgs = useMemo(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const recoverDeploymentMessageIdByTokenId = protectedProcedure
},
fromTime: fromTime,
toTime: toTime,
size: 1000,
size: 200,
});

const validEntries = deployments.filter(
Expand Down

0 comments on commit 3761845

Please sign in to comment.