From b4ecee10f51ad677036b7021333e734bba00ff1d Mon Sep 17 00:00:00 2001 From: = Date: Mon, 22 Sep 2025 21:29:00 +0530 Subject: [PATCH] fix: resolved failing cert endpoint --- .../CertificatesPage/components/CertificatesTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/cert-manager/CertificatesPage/components/CertificatesTable.tsx b/frontend/src/pages/cert-manager/CertificatesPage/components/CertificatesTable.tsx index 3cf35ebd6..cd0b3fa5a 100644 --- a/frontend/src/pages/cert-manager/CertificatesPage/components/CertificatesTable.tsx +++ b/frontend/src/pages/cert-manager/CertificatesPage/components/CertificatesTable.tsx @@ -64,7 +64,7 @@ export const CertificatesTable = ({ handlePopUpOpen }: Props) => { const { currentProject } = useProject(); const { data, isPending } = useListWorkspaceCertificates({ - projectId: currentProject?.slug ?? "", + projectId: currentProject?.id ?? "", offset: (page - 1) * perPage, limit: perPage });