From 2d0102eefbabf9bc141f4a66dee2e2972fa9df51 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:28:41 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84?= =?UTF-8?q?=E0=B8=82=20contact:=20BranchContact[];?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/branch/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/branch/types.ts b/src/stores/branch/types.ts index 80469979..26695817 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -1,4 +1,5 @@ import { District, Province, SubDistrict } from '../address'; +import { BranchContact } from '../branch-contact/types'; import { Status } from '../types'; export type Branch = { @@ -28,6 +29,7 @@ export type Branch = { taxNo: string; id: string; code: string; + contact: BranchContact[]; }; export type BranchWithChildren = Branch & { branch: Branch[] };