From 02fcfa817b7a7a6d77fb80068c387b5de30e0cf9 Mon Sep 17 00:00:00 2001
From: Jure Triglav <juretriglav@gmail.com>
Date: Fri, 19 Mar 2021 02:16:17 +0100
Subject: [PATCH] fix: use an svg for default profile picture

---
 app/components/component-profile/src/Profile.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/components/component-profile/src/Profile.jsx b/app/components/component-profile/src/Profile.jsx
index cdbe2b523c..28b84aa59e 100644
--- a/app/components/component-profile/src/Profile.jsx
+++ b/app/components/component-profile/src/Profile.jsx
@@ -58,7 +58,7 @@ const ProfileDropzone = ({ profilePicture, updateProfilePicture }) => {
       {profilePicture ? (
         <BigProfileImage src={profilePicture} />
       ) : (
-        <BigProfileImage src="/static/profiles/placeholder.png" />
+        <BigProfileImage src="/static/profiles/default_avatar.svg" />
       )}
       {isDragActive ? <Button>Drop it here</Button> : <Button>Change</Button>}
     </div>
-- 
GitLab