From 1db1ae0296d290b3927f8941d162218e429f7441 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:29:16 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20type=20=20?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1=20imageUrl?= 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 76db798b..f922c043 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -17,6 +17,7 @@ export type Branch = { latitude: string; contactName: string; qrCodeImageUrl: string; + imageUrl: string; email: string; zipCode: string; subDistrictId: string | null; @@ -55,6 +56,7 @@ export type BranchCreate = { contactName: string; contact: string; qrCodeImage: File; + imageUrl: File; lineId: string; };