From 5f6042c05d35adf89ad6c97a7cc64a84246a95ae Mon Sep 17 00:00:00 2001 From: HyeongKyeom Kim <97586683+Brokyeom@users.noreply.github.com> Date: Wed, 7 Aug 2024 23:26:00 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EC=A7=80=EC=9B=90=EA=B8=B0=EA=B0=84?= =?UTF-8?q?=20=EC=97=B0=EC=9E=A5=20(#92)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/components/common/AboutRecruit/RecruitButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/common/AboutRecruit/RecruitButton.tsx b/apps/web/src/components/common/AboutRecruit/RecruitButton.tsx index 87c9bd1..2e5b208 100644 --- a/apps/web/src/components/common/AboutRecruit/RecruitButton.tsx +++ b/apps/web/src/components/common/AboutRecruit/RecruitButton.tsx @@ -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 = () => { @@ -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')}분 남았어요.`;