Skip to content

Commit 6c40388

Browse files
authored
feat : deadline 연장된 지원시간으로 변경 (#84)
1 parent 003f2eb commit 6c40388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/src/components/common/AboutRecruit/RecruitButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function RecruitButton() {
88
const [timeLeft, setTimeLeft] = useState<string>('');
99

1010
useEffect(() => {
11-
const deadline = dayjs('2024-02-07T04:00:00.000Z');
11+
const deadline = dayjs('2024-02-11T15:59:00.000Z');
1212
const start = dayjs('2024-01-28T15:00:00.000Z');
1313

1414
const calculateTimeLeft = () => {
@@ -30,7 +30,7 @@ export default function RecruitButton() {
3030
// const seconds = difference % 60;
3131

3232
if (days > 0 || hours >= 24) {
33-
return '현재 메이커스 4기 모집 중 (~2/7 수요일 13시)';
33+
return '현재 메이커스 4기 모집 중 (~2/11 일요일 23시 59분)';
3434
}
3535

3636
return `지원 마감까지 ${hours.toString()}시간 ${minutes.toString().padStart(2, '0')}분 남았어요.`;

0 commit comments

Comments
 (0)