Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
leedoopal committed Jan 4, 2023
2 parents f961824 + 27490d7 commit f358e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/organisms/form/event/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const List = ({
<div className="relative">
<button className="list__header__button" onClick={changeShowPicker}>
<span>{year}λ…„&nbsp;</span>
{month && <span>{month + 1}μ›”</span>}
{typeof month === 'number' && <span>{month + 1}μ›”</span>}
</button>
<div ref={pickerRef}>
<PickerLayer
Expand Down

0 comments on commit f358e3b

Please sign in to comment.