Skip to content

Commit

Permalink
fix :: 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
phyuna0525 authored Nov 6, 2024
2 parents 5ae58a0 + e68a94a commit 3073bca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/company/src/app/recruitments/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export default function Recruitments({ params }: { params: { id: string } }) {
reset,
} = useForm<IRecruitment & { start_time: string; end_time: string }>({
values: {
integration_plan: !!recruitmentDetail?.integration_plan,
winter_intern: recruitmentDetail?.winter_intern,
benefits: recruitmentDetail?.benefits,
end_date: recruitmentDetail?.end_date,
Expand All @@ -71,6 +72,7 @@ export default function Recruitments({ params }: { params: { id: string } }) {
start_date: recruitmentDetail?.start_date,
train_pay: regex.money(recruitmentDetail?.train_pay.toString() || ""),
flexible_working: !!recruitmentDetail?.flexible_working,
hire_convertible: !!recruitmentDetail?.hire_convertible,
areas:
recruitmentDetail?.areas.map(area => {
return {
Expand Down

0 comments on commit 3073bca

Please sign in to comment.