From 92cecbe7a5b72d23f2fb203cce586eb61ae9f9e1 Mon Sep 17 00:00:00 2001 From: yarimu Date: Mon, 18 Nov 2024 03:20:27 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=BB=A8=EB=B2=A4=EC=85=98=EC=97=90?= =?UTF-8?q?=20=EB=A7=9E=EA=B2=8C=20=EB=84=A4=EC=9D=B4=EB=B0=8D=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../juniorPromise/components/SeniorSearch.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/juniorPromise/components/SeniorSearch.tsx b/src/pages/juniorPromise/components/SeniorSearch.tsx index 6c347d8b..7020b195 100644 --- a/src/pages/juniorPromise/components/SeniorSearch.tsx +++ b/src/pages/juniorPromise/components/SeniorSearch.tsx @@ -55,23 +55,23 @@ export const SeniorSearch = (props: SeniorSearchPropTypes) => { - + {chipFieldName.map((field, fieldId) => ( {field} - handleDeleteFieldChip(field)}> + handleDeleteFieldChip(field)}> - + ))} {chipPositionName.map((position, positionId) => ( {position} - handleDeletePositionChip(position)}> + handleDeletePositionChip(position)}> - + ))} @@ -136,7 +136,7 @@ const Chip = styled.div` color: ${({ theme }) => theme.colors.grayScaleDG}; `; -const CloseButton = styled(CloseIc)` +const CloseIcon = styled(CloseIc)` padding: 0.4962rem 0.4839rem 0.4962rem 0.5084rem; cursor: pointer; @@ -146,6 +146,6 @@ const LineWrapper = styled.div` padding-left: 13.7rem; `; -const StyledResetIc = styled(ResetIc)` +const ResetIcon = styled(ResetIc)` cursor: pointer; `;