From 989b88f5fb542346a19f856c66d8f4231ef3692d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A7=84=ED=98=B8?= Date: Fri, 16 Aug 2024 19:52:20 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=9B=85=20=EB=82=B4=EC=97=90=EC=84=9C?= =?UTF-8?q?=20errorIndexList=20=EC=82=AC=EC=9A=A9=ED=95=98=EA=B3=A0=20?= =?UTF-8?q?=EC=9E=88=EC=A7=80=20=EC=95=8A=EC=95=84=EC=84=9C=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0=ED=96=88=EC=8A=B5=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AddBillActionListModalContent.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/src/components/Modal/SetActionModal/AddBillActionListModalContent/AddBillActionListModalContent.tsx b/client/src/components/Modal/SetActionModal/AddBillActionListModalContent/AddBillActionListModalContent.tsx index 0f11852af..e5165804e 100644 --- a/client/src/components/Modal/SetActionModal/AddBillActionListModalContent/AddBillActionListModalContent.tsx +++ b/client/src/components/Modal/SetActionModal/AddBillActionListModalContent/AddBillActionListModalContent.tsx @@ -17,7 +17,6 @@ const AddBillActionListModalContent = ({setIsOpenBottomSheet}: AddBillActionList inputPairList, inputRefList, errorMessage, - errorIndexList, handleInputChange, getFilledInputPairList, deleteEmptyInputPairElementOnBlur, @@ -48,7 +47,6 @@ const AddBillActionListModalContent = ({setIsOpenBottomSheet}: AddBillActionList onBlur={() => deleteEmptyInputPairElementOnBlur()} // TODO: (@weadie) 이 블러프롭이 내부적으로 index를 넘기고 있기 때문에 화살표 함수로 써야만하내요.. placeholder="지출 내역" ref={el => (inputRefList.current[index * 2] = el)} - isError={errorIndexList.includes(index)} /> deleteEmptyInputPairElementOnBlur()} placeholder="금액" ref={el => (inputRefList.current[index * 2 + 1] = el)} - isError={errorIndexList.includes(index)} /> ))}