From fd8087a5c5103632c49430d7c155ca622b228b61 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:02:47 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20type=20?= =?UTF-8?q?=E0=B8=82=E0=B8=AD=E0=B8=87=20image=20File=20|=20null;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/customer/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/customer/types.ts b/src/stores/customer/types.ts index 53df39d6..c13257e9 100644 --- a/src/stores/customer/types.ts +++ b/src/stores/customer/types.ts @@ -92,7 +92,7 @@ export type CustomerCreate = { customerName: string; customerType: CustomerType; status?: Status; - image: File; + image: File | null; }; export type CustomerUpdate = {