Skip to content

Commit

Permalink
fix:job-form-submission (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash2330 authored Oct 10, 2024
1 parent e233092 commit fcf069e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/validators/jobs.validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const JobPostSchema = z
category: z.string(),
companyEmail: z.string().email('Invalid email').min(1, 'Email is required'),
companyBio: z.string().min(1, 'Company Bio is required'),
companyLogo: z.string().url(),
companyLogo: z.string().min(1, 'Company Logo is Required'),
hasSalaryRange: z.boolean().optional(),
minSalary: z.coerce
.number({ message: 'Min salary must be a number' })
Expand Down

0 comments on commit fcf069e

Please sign in to comment.