Skip to content

Commit cf1243b

Browse files
committed
use a better alt for avatars
1 parent 76dbe3c commit cf1243b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/GroupAvatar/GroupAvatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const GroupAvatar: FC<GroupAvatarProps> = ({ name, avatarURL }) => {
4040
>
4141
<Avatar>
4242
{avatarURL ? (
43-
<img alt={`${name}'s Avatar`} src={avatarURL} width="100%" />
43+
<img alt={firstLetter(name)} src={avatarURL} width="100%" />
4444
) : (
4545
firstLetter(name)
4646
)}

0 commit comments

Comments
 (0)