diff --git a/webapp/src/component/common/avatar/ProfileAvatar.tsx b/webapp/src/component/common/avatar/ProfileAvatar.tsx index 91bf008c47..178f823836 100644 --- a/webapp/src/component/common/avatar/ProfileAvatar.tsx +++ b/webapp/src/component/common/avatar/ProfileAvatar.tsx @@ -54,7 +54,12 @@ const file2Base64 = (file: File): Promise => { }); }; -const ALLOWED_UPLOAD_TYPES = ['image/png', 'image/jpeg', 'image/gif']; +const ALLOWED_UPLOAD_TYPES = [ + 'image/png', + 'image/jpeg', + 'image/gif', + 'image/webp', +]; export const ProfileAvatar: FC<{ disabled?: boolean;