Merge pull request #699 from bigcapitalhq/fix-remove-logo-pdf-template

fix: Delete company logo from the PDF template
This commit is contained in:
Ahmed Bouhuolia
2024-10-08 08:21:03 +02:00
committed by GitHub

View File

@@ -13,6 +13,9 @@ export function BrandingCompanyLogoUploadField() {
onChange={(file) => {
const imageUrl = file ? URL.createObjectURL(file) : '';
// Reset the logo key since it is changed.
setFieldValue('companyLogoKey', '');
setFieldValue('_companyLogoFile', file);
setFieldValue('companyLogoUri', imageUrl);
}}