Skip to content

Commit

Permalink
fix: 변수명 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjiw0n committed Jan 3, 2025
1 parent 5f03d75 commit 3900c2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/common/v2/popup/ClassificationBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ function ClassificationBox({ categoryName, label }: ClassificationBoxProps) {
<ClassificationBtnLayout>
<CategoryTitleStyle>{label}</CategoryTitleStyle>
{isClicked ? (
<Icon name="IcnX" size="tiny" color="strong" onClick={handleIconClick} isCusor />
<Icon name="IcnX" size="tiny" color="strong" onClick={handleIconClick} isCursor />
) : (
<Icon name="IcnPlus" size="tiny" color="strong" onClick={handleIconClick} isCusor />
<Icon name="IcnPlus" size="tiny" color="strong" onClick={handleIconClick} isCursor />
)}
</ClassificationBtnLayout>
{isClicked && (
Expand Down
4 changes: 2 additions & 2 deletions src/components/common/v2/popup/DeadlineBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ function DeadlineBox({ date, startTime, endTime, label }: DeadlineBoxProps) {
<DeadlineBtnLayout>
<CategoryTitleStyle>{label}</CategoryTitleStyle>
{isClicked ? (
<Icon name="IcnX" size="tiny" color="strong" onClick={handleXBtnClick} isCusor />
<Icon name="IcnX" size="tiny" color="strong" onClick={handleXBtnClick} isCursor />
) : (
<Icon name="IcnPlus" size="tiny" color="strong" onClick={handlePlusBtnClick} isCusor />
<Icon name="IcnPlus" size="tiny" color="strong" onClick={handlePlusBtnClick} isCursor />
)}
</DeadlineBtnLayout>
{isClicked && (
Expand Down

0 comments on commit 3900c2f

Please sign in to comment.