From df985859e77943de2208eb68ac14ee976223ef69 Mon Sep 17 00:00:00 2001 From: keyy1315 Date: Fri, 25 Jul 2025 16:08:08 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20input=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EB=88=84=EB=9D=BD=EB=90=9C=20=EB=B9=88=20=EA=B0=92?= =?UTF-8?q?=20=ED=95=B8=EB=93=A4=EB=A7=81=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/survey-sale/detail/BasicForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/survey-sale/detail/BasicForm.tsx b/src/components/survey-sale/detail/BasicForm.tsx index ff284b1..fc5f880 100644 --- a/src/components/survey-sale/detail/BasicForm.tsx +++ b/src/components/survey-sale/detail/BasicForm.tsx @@ -96,7 +96,7 @@ export default function BasicForm({ basicInfo, setBasicInfo, mode, session }: Ba id="investigationDate" type="date" className="date-frame" - value={basicInfo?.investigationDate?.toString()} + value={basicInfo?.investigationDate?.toString() ?? ''} onChange={(e) => setBasicInfo({ ...basicInfo, investigationDate: e.target.value })} />