From c65a9919433748973ac148e3b188d3c2ca3c279a Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Wed, 30 Oct 2024 15:01:21 -0700 Subject: [PATCH] fix: add missing type properties on client side --- frontend/src/hooks/api/dynamicSecret/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/hooks/api/dynamicSecret/types.ts b/frontend/src/hooks/api/dynamicSecret/types.ts index 54e587989..517beb39c 100644 --- a/frontend/src/hooks/api/dynamicSecret/types.ts +++ b/frontend/src/hooks/api/dynamicSecret/types.ts @@ -224,9 +224,9 @@ export type TDynamicSecretProvider = accountId: string; username: string; password: string; - // creationStatement: string; - // revocationStatement: string; - // renewStatement?: string; + creationStatement: string; + revocationStatement: string; + renewStatement: string; }; }; export type TCreateDynamicSecretDTO = {