fix(getIcon.jsx): match initial styling better with official (#277)

This commit is contained in:
Danny Avila 2023-05-15 12:15:33 -04:00 committed by GitHub
parent 3120602d6a
commit 5711ff27ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,8 +22,8 @@ const getIcon = props => {
>
<img
className="rounded-sm"
src={user?.avatar || `https://avatars.dicebear.com/api/initials/${user?.name}.svg`}
alt=""
src={user?.avatar || `https://api.dicebear.com/6.x/initials/svg?seed=${user?.name}&fontFamily=Verdana&fontSize=36`}
alt="avatar"
/>
</div>
);