From dd09c8037c20880bf36bc8f649bfc09dd7ccaf91 Mon Sep 17 00:00:00 2001 From: lydiacho <81505421+lydiacho@users.noreply.github.com> Date: Wed, 7 Aug 2024 23:05:56 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20=EB=B6=84=20=EB=8B=A8=EC=9C=84=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20(#356)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 분 단위 추가 * fix: (오프라인 면접) 안내 삭제 --- src/views/ApplyPage/components/ApplyInfo/index.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/ApplyPage/components/ApplyInfo/index.tsx b/src/views/ApplyPage/components/ApplyInfo/index.tsx index fe8254b0..3868c16d 100644 --- a/src/views/ApplyPage/components/ApplyInfo/index.tsx +++ b/src/views/ApplyPage/components/ApplyInfo/index.tsx @@ -31,11 +31,13 @@ const ApplyInfo = memo(({ isReview }: { isReview: boolean }) => { if (!applicationStart) return; - const formattedApplicationStart = format(new Date(applicationStart || ''), 'M월 dd일 (E) aaa HH시', { locale: ko }); - const formattedApplicationEnd = format(new Date(applicationEnd || ''), 'M월 dd일 (E) aaa HH시', { locale: ko }); + const formattedApplicationStart = format(new Date(applicationStart || ''), 'M월 dd일 (E) aaa HH시 mm분', { + locale: ko, + }); + const formattedApplicationEnd = format(new Date(applicationEnd || ''), 'M월 dd일 (E) aaa HH시 mm분', { locale: ko }); const formattedApplicationConfirmStart = format( new Date(applicationPassConfirmStart || ''), - 'M월 dd일 (E) aaa HH시', + 'M월 dd일 (E) aaa HH시 mm분', { locale: ko, }, @@ -89,7 +91,7 @@ const ApplyInfo = memo(({ isReview }: { isReview: boolean }) => {