diff --git a/apps/web/app/(app)/environments/[environmentId]/product/look/components/EditLogo.tsx b/apps/web/app/(app)/environments/[environmentId]/product/look/components/EditLogo.tsx
index 73869ff9e1..790ec01db5 100644
--- a/apps/web/app/(app)/environments/[environmentId]/product/look/components/EditLogo.tsx
+++ b/apps/web/app/(app)/environments/[environmentId]/product/look/components/EditLogo.tsx
@@ -125,7 +125,13 @@ export const EditLogo = ({ product, environmentId, isViewer }: EditLogoProps) =>
/>
)}
-
+
{isEditing && logoUrl && (
<>
diff --git a/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/components/EditProfileAvatarForm.tsx b/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/components/EditProfileAvatarForm.tsx
index c0fa2b8c2f..afe575d73b 100644
--- a/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/components/EditProfileAvatarForm.tsx
+++ b/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/components/EditProfileAvatarForm.tsx
@@ -144,7 +144,7 @@ export const EditProfileAvatarForm = ({ session, environmentId }: EditProfileAva
inputRef.current = e;
}}
className="hidden"
- accept="image/*"
+ accept="image/jpeg, image/png"
onChange={(e) => {
field.onChange(e.target.files);
form.handleSubmit(onSubmit)();