From 7554fe815012e3d4cb19d893a7c5657c105f1f15 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Fri, 25 Oct 2024 10:10:31 +0700 Subject: [PATCH] fix: type --- src/stores/workflow-template/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/workflow-template/types.ts b/src/stores/workflow-template/types.ts index 8643363e..3df9c540 100644 --- a/src/stores/workflow-template/types.ts +++ b/src/stores/workflow-template/types.ts @@ -34,6 +34,6 @@ export type WorkflowTemplatePayload = { name: string; type?: string; value?: string[]; - responseiblePersonId?: string[]; + responsiblePersonId?: string[]; }[]; };