Skip to content

Commit

Permalink
fix: 모집 발표 날짜 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin committed Dec 16, 2024
1 parent 683aa22 commit 62cc01e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/organisms/EventStatus/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function EventStatus({ eventStatus }: Props) {

if (dayjs(currentTime).isBefore(acceptanceDate)) {
return (
<Badge label={`${acceptanceDate.format('MM월 DD일 (ddd)')} 모집 발표 🏄`} variant="success" />
<Badge label={`${acceptanceDate.format('MM월 DD일 (ddd)')} 모집 발표 🎄`} variant="success" />
);
}

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/lib/assets/data/event_status.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"status": "ONGOING",
"applicationStartDateTime": "2024/11/18 00:00:00",
"applicationEndDateTime": "2024/12/15 23:59:59",
"applicantAcceptanceDateTime": "2024/12/25 00:00:00"
"applicantAcceptanceDateTime": "2024/12/26 00:00:00"
}

0 comments on commit 62cc01e

Please sign in to comment.