Skip to content

Commit

Permalink
fix:build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Paribesh01 committed Oct 19, 2024
1 parent 2d7df76 commit 2fc59d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UpdateCompanyForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const UpdateCompanyForm = ({ companyData, setIsDialogOpen }: Props) => {
formData.append('file', file);
formData.append('uniqueFileName', uniqueFileName);

const res = await uploadFileAction(formData);
const res = await uploadFileAction(formData, 'webp');

if (!res) {
throw new Error('Failed to upload image');
Expand Down

0 comments on commit 2fc59d7

Please sign in to comment.