Skip to content

Commit

Permalink
fix : 지원기간 연장 (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom authored Aug 7, 2024
1 parent 61a0cc6 commit 5f6042c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/common/AboutRecruit/RecruitButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function RecruitButton() {
const [timeLeft, setTimeLeft] = useState<string>('');

useEffect(() => {
const deadline = dayjs('2024-08-07T14:59:00.000Z');
const deadline = dayjs('2024-08-09T14:59:00.000Z');
const start = dayjs('2024-07-31T02:00:00.000Z');

const calculateTimeLeft = () => {
Expand All @@ -32,7 +32,7 @@ export default function RecruitButton() {
// const seconds = difference % 60;

if (days > 0 || hours >= 24) {
return '현재 35기 메이커스 팀 모집 중 (~8/7 수요일 23시 59분)';
return '현재 35기 메이커스 팀 모집 중 (~8/9 금요일 23시 59분)';
}

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

0 comments on commit 5f6042c

Please sign in to comment.