Skip to content

Commit

Permalink
fix: 모집의뢰서 수정 undefined 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Mar 15, 2024
1 parent 70d22c2 commit 6bb9916
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Detail/RecruitmentFormDetail/Edit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ export function RecruitmentFormDetailEdit({
style={{
paddingRight: '10px',
}}
value={start_time.replace(
value={start_time?.replace(
/^(\d{2}:\d{2}):\d{2}$/,
'$1'
)}
Expand All @@ -449,7 +449,7 @@ export function RecruitmentFormDetailEdit({
style={{
paddingRight: '10px',
}}
value={end_time.replace(
value={end_time?.replace(
/^(\d{2}:\d{2}):\d{2}$/,
'$1'
)}
Expand Down

0 comments on commit 6bb9916

Please sign in to comment.