Skip to content

Commit

Permalink
style :: 코드 스타일 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Apr 5, 2024
1 parent c76a4ee commit cdad96b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/DropDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface PropsType {
function DropDown({ title, items, onClickItem, selected }: PropsType) {
const { toggleDropdown, DropDownComponent, closeDropDown } = useDropDown();

const selectedItemLabel = items.find((item) => item.code === String(selected));
const selectedItemLabel = items.find((item) => item.code === selected.toString());

return (
<div
Expand Down

0 comments on commit cdad96b

Please sign in to comment.