Skip to content

Commit

Permalink
[Fix] 분 단위 추가 (#356)
Browse files Browse the repository at this point in the history
* fix: 분 단위 추가

* fix: (오프라인 면접) 안내 삭제
  • Loading branch information
lydiacho authored Aug 7, 2024
1 parent 2901080 commit dd09c80
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/views/ApplyPage/components/ApplyInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down Expand Up @@ -89,7 +91,7 @@ const ApplyInfo = memo(({ isReview }: { isReview: boolean }) => {
</li>
<li className={dateItems}>
<span className={dateLabel}>면접 평가</span>
<span className={dateText}>{`${formattedInterviewStart} - ${formattedInterviewEnd} (오프라인 면접)`}</span>
<span className={dateText}>{`${formattedInterviewStart} - ${formattedInterviewEnd}`}</span>
</li>
<li className={dateItems}>
<span className={dateLabel}>최종 발표</span>
Expand Down

0 comments on commit dd09c80

Please sign in to comment.