From eebf62f30c0c6d0f63b4fa51a2bf021abee22570 Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Tue, 4 Nov 2025 17:40:13 -0800 Subject: [PATCH] Fix linter --- frontend/src/hooks/api/certificateProfiles/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/hooks/api/certificateProfiles/types.ts b/frontend/src/hooks/api/certificateProfiles/types.ts index 7acb6fef9..c2b38e8e8 100644 --- a/frontend/src/hooks/api/certificateProfiles/types.ts +++ b/frontend/src/hooks/api/certificateProfiles/types.ts @@ -58,7 +58,7 @@ export type TCreateCertificateProfileDTO = { autoRenew?: boolean; renewBeforeDays?: number; }; - acmeConfig?: {}; + acmeConfig?: unknown; }; export type TUpdateCertificateProfileDTO = { @@ -74,7 +74,7 @@ export type TUpdateCertificateProfileDTO = { autoRenew?: boolean; renewBeforeDays?: number; }; - acmeConfig?: {}; + acmeConfig?: unknown; }; export type TDeleteCertificateProfileDTO = {