// @ts-nocheck import { useFormikContext } from 'formik'; import { FFormGroup } from '@/components'; import { CompanyLogoUpload } from './CompanyLogoUpload'; export function BrandingCompanyLogoUploadField() { const { setFieldValue, values } = useFormikContext(); return ( { const imageUrl = file ? URL.createObjectURL(file) : ''; // Reset the logo key since it is changed. setFieldValue('companyLogoKey', ''); setFieldValue('_companyLogoFile', file); setFieldValue('companyLogoUri', imageUrl); }} /> ); }