Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed May 13, 2024
1 parent 20819fb commit 77eb8a4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/board/calendar/update/[id].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ const CalendarUpdatePage = ({ calendarInfo }) => {
</div>
</div>
<Message>
{!event_date ? '게시 시작 날짜와 종료 날짜를 입력해주세요.' : `D-${dDay}`}
{!event_date
? '게시 시작 날짜와 종료 날짜를 입력해주세요.'
: dDay
? `D-${dDay}`
: 'D-Day'}
</Message>

<Form.Group>
Expand Down

0 comments on commit 77eb8a4

Please sign in to comment.