diff --git a/src/components/job-form.tsx b/src/components/job-form.tsx index 932b6add..7860133f 100644 --- a/src/components/job-form.tsx +++ b/src/components/job-form.tsx @@ -121,7 +121,8 @@ const PostJobForm = () => { const handleFormSubmit = async (data: JobPostSchemaType) => { try { - data.companyLogo = (await submitImage(file)) ?? ''; + data.companyLogo = + (await submitImage(file)) ?? 'https://wwww.example.com'; ``; const response = await createJob(data); if (!response.status) {