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] 23:59에 지원서 마감되는 에러 해결 #360

Merged
merged 1 commit 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
6 changes: 4 additions & 2 deletions src/views/ApplyPage/components/ApplyInfo/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { format } from 'date-fns';
import { format, subMinutes } from 'date-fns';
import { ko } from 'date-fns/locale';
import { memo, useContext } from 'react';

Expand Down Expand Up @@ -34,7 +34,9 @@ const ApplyInfo = memo(({ isReview }: { isReview: boolean }) => {
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 formattedApplicationEnd = format(subMinutes(new Date(applicationEnd || ''), 1), 'M월 dd일 (E) aaa HH시 mm분', {
locale: ko,
});
const formattedApplicationConfirmStart = format(
new Date(applicationPassConfirmStart || ''),
'M월 dd일 (E) aaa HH시 mm분',
Expand Down