From 9f24946c76d6f2487abee857bd838c2f4dbdd6df Mon Sep 17 00:00:00 2001 From: 03hoho03 Date: Mon, 8 Apr 2024 19:32:29 +0900 Subject: [PATCH] =?UTF-8?q?[#50]=20=ED=83=80=EC=9E=85=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../verification/ibulsin/_components/ItemAddBtn/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(route)/verification/ibulsin/_components/ItemAddBtn/index.tsx b/app/(route)/verification/ibulsin/_components/ItemAddBtn/index.tsx index f11fa79..a2b5bec 100644 --- a/app/(route)/verification/ibulsin/_components/ItemAddBtn/index.tsx +++ b/app/(route)/verification/ibulsin/_components/ItemAddBtn/index.tsx @@ -11,8 +11,8 @@ function ItemAddBtn() { const newItem: ActiveInvestmentItemType = { id: new Date().toISOString(), name: '', - score: null, - people: null, + score: 0, + people: 0, } setInvestmentItem((prev) => [...prev, newItem]) }