From 242595fceb5013d9e4e687601c4f26701c8e5dcc Mon Sep 17 00:00:00 2001 From: mohammad riyaz Date: Sun, 24 Nov 2024 21:05:39 +0530 Subject: [PATCH] changed getCaCerts key from ca-cert -> ca-certs --- frontend/src/hooks/api/ca/queries.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/api/ca/queries.tsx b/frontend/src/hooks/api/ca/queries.tsx index a1e633776..da010c866 100644 --- a/frontend/src/hooks/api/ca/queries.tsx +++ b/frontend/src/hooks/api/ca/queries.tsx @@ -7,7 +7,7 @@ import { TCertificateAuthority } from "./types"; export const caKeys = { getCaById: (caId: string) => [{ caId }, "ca"], - getCaCerts: (caId: string) => [{ caId }, "ca-cert"], + getCaCerts: (caId: string) => [{ caId }, "ca-certs"], getCaCrls: (caId: string) => [{ caId }, "ca-crls"], getCaCert: (caId: string) => [{ caId }, "ca-cert"], getCaCsr: (caId: string) => [{ caId }, "ca-csr"],