Merge pull request #4571 from Infisical/fix/cert-endpoint-miss

fix: resolved failing cert endpoint
This commit is contained in:
Akhil Mohan
2025-09-22 21:30:34 +05:30
committed by GitHub

View File

@@ -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
});