From dac32c8eaecf7a84be39ab53304b8f6950562697 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Mon, 28 Oct 2024 13:02:55 +0700 Subject: [PATCH] refactor: add type agentUserId --- src/stores/customer/types.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/stores/customer/types.ts b/src/stores/customer/types.ts index 6b7898bc..ff1eba3c 100644 --- a/src/stores/customer/types.ts +++ b/src/stores/customer/types.ts @@ -32,7 +32,8 @@ export type CustomerBranch = { jobDescription: string; jobPosition: string; businessType: string; - agent: string; + agentUserId: string; + contactName: string; officeTel: string; contactTel: string; @@ -129,7 +130,7 @@ export type CustomerBranchCreate = { email: string; contactTel?: string; officeTel?: string; - agent?: string; + agentUserId?: string; status: Status; customerName?: string; registerName?: string;