From 3f370350e722d214bc98f92661fe4ce558bc4ad8 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 11 Oct 2024 09:17:10 +0700 Subject: [PATCH] fix: type error --- src/stores/quotations/types.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 52f07d16..ab1a7db4 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -1,6 +1,14 @@ +import { CustomerType } from '../customer/types'; import { Status } from '../types'; type CustomerBranchRelation = { + customer: { + registeredBranchId: string; + selectedImage: string | null; + code: string; + customerType: CustomerType; + status: Status; + }; customerCode?: string; wageRateText: string; wageRate: number;