Skip to content

Commit

Permalink
Merge pull request #764 from Bamdoliro/bug/#762
Browse files Browse the repository at this point in the history
chore(user): 사소한 에러 해결
  • Loading branch information
junghongseop authored Sep 16, 2024
2 parents 11bb146 + 83b2a89 commit 8a548e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useDday = () => {
? 제출_마감_날짜
: dayjs().isBefore(일차_합격_발표.add(2, 'day'))
? 일차_합격_발표
: dayjs().isBefore(최종_합격_발표)
: dayjs().isBefore(최종_합격_발표.add(2, 'day'))
? 최종_합격_발표
: 입학_등록_기간;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const useRemainDate = () => {
const { currentTime, remainDays } = useDday();
const statusMap = new Map([
[제출_시작_날짜, '원서 접수 시작까지'],
[최종_합격_발표, '최종합격자 발표'],
[최종_합격_발표, '최종 합격자 발표'],
[일차_합격_발표, '1차 합격자 발표'],
[입학_등록_기간, '입학 등록 기간'],
]);
Expand Down

0 comments on commit 8a548e1

Please sign in to comment.