From 2cf2e9f5215c00d7459c23ea473cd699bca06ef3 Mon Sep 17 00:00:00 2001 From: Aakash Singh Date: Sun, 15 Sep 2024 01:12:40 +0530 Subject: [PATCH] company-logo-url-fix --- src/components/job-form.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {