fix: resolved failing cert endpoint

This commit is contained in:
=
2025-09-22 21:29:00 +05:30
parent 464e6b5bcd
commit b4ecee10f5

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