Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ient into fix/#326/template
  • Loading branch information
JeongWuk committed Dec 20, 2023
2 parents 4e27fbb + d4c77c2 commit c5cfade
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/schemas/steadySchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,16 @@ export const SteadySchema = z.object({
content: z.string({
required_error: "스테디의 모집글 내용을 입력해주세요.",
}),
positions: z.array(number(), {
required_error: "스테디의 모집 분야를 선택해주세요.",
}),
stacks: z.array(number(), {
required_error: "스테디의 기술 스택을 선택해주세요.",
}),
positions: z
.array(number(), {
required_error: "스테디의 모집 분야를 선택해주세요.",
})
.min(1, { message: "스테디의 모집 분야를 1개 이상 선택해주세요." }),
stacks: z
.array(number(), {
required_error: "스테디의 기술 스택을 선택해주세요.",
})
.min(1, { message: "스테디의 기술 스택을 1개 이상 선택해주세요." }),
contact: z.union([
z
.string({ required_error: "스테디의 연락 수단 정보를 입력해주세요." })
Expand Down

0 comments on commit c5cfade

Please sign in to comment.