Skip to content

Commit

Permalink
fix: 지원 현황 페이지의 면접 가능시간 부분 올바르게 보이도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
geongyu09 committed Sep 3, 2024
1 parent d1e4621 commit 6fb38e2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ const ApplicantTimelineNode = ({ postId }: ApplicantTimelineNodeProps) => {
<Txt
typography="h6"
className="block pb-8"
>{`${time.startTime.getMonth()}${time.startTime.getDate()}일`}</Txt>
>{`${time.startTime.toLocaleDateString("ko-KR", {
month: "long",
day: "numeric",
weekday: "short",
})}`}</Txt>
<div className="w-full flex">
{dateSplicer(time.startTime, time.endTime, seperate).map(
(date, index) => (
Expand Down

0 comments on commit 6fb38e2

Please sign in to comment.