Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] 분 단위 추가 #356

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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