From 18a635e0af70917ae434fa9f15d34312b1bb31ed Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Thu, 10 Oct 2024 18:15:20 +0700 Subject: [PATCH] refactor: edit type --- src/stores/quotations/types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index a3412310..52f07d16 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -223,7 +223,10 @@ export type QuotationFull = { work: WorkRelation | null; serviceId: string | null; service: ServiceRelation | null; - worker: EmployeeRelation[]; + worker: { + productServiceId: string; + employeeId: string; + }[]; }[]; id: string;