From cd4051f79299a3ce6737549b52232553c51e7e62 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Tue, 15 Oct 2024 17:21:51 +0700 Subject: [PATCH] fix: wrong type --- src/stores/quotations/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index a0f66c09..9446e872 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -262,6 +262,7 @@ export type QuotationFull = { customerBranchId: string; registeredBranchId: string; + registeredBranch: { id: string; name: string }; createdByUserId: string; createdAt: string | Date; @@ -284,7 +285,6 @@ export type QuotationPayload = { }[]; customerBranchId: string; registeredBranchId: string; - registeredBranch: { id: string; name: string }; urgent: boolean; worker: EmployeeWorker[]; _count: { worker: number };