Skip to content

Commit

Permalink
Merge pull request #672 from credebl/fix/pagination-changes
Browse files Browse the repository at this point in the history
fix: pagination parameter name to sync with backend
  • Loading branch information
pranalidhanavade authored May 2, 2024
2 parents ab6838c + 7bd1081 commit cd02469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/verification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const getVerificationList = async ({
sortingOrder,
}: IConnectionListAPIParameter) => {
const orgId = await getFromLocalStorage(storageKeys.ORG_ID);
const url = `${apiRoutes.organizations.root}/${orgId}${apiRoutes.Verification.verifyCredential}?pageSize=${itemPerPage}&pageNumber=${page}&searchByText=${search}&sortBy=${sortingOrder}&sortField=${sortBy}`;
const url = `${apiRoutes.organizations.root}/${orgId}${apiRoutes.Verification.verifyCredential}?pageSize=${itemPerPage}&pageNumber=${page}&search=${search}&sortBy=${sortingOrder}&sortField=${sortBy}`;

const axiosPayload = {
url,
Expand Down

0 comments on commit cd02469

Please sign in to comment.