fix: add referrerPolicy for Google profile images

This commit is contained in:
CREDO23 2026-01-14 20:30:02 +02:00
parent 83d6b735fa
commit 54568a62e0
2 changed files with 7 additions and 1 deletions

View file

@ -30,6 +30,7 @@ const UserAvatar: FC<AuthorMetadata> = ({ displayName, avatarUrl }) => {
src={avatarUrl}
alt={displayName || "User"}
className="size-8 rounded-full object-cover"
referrerPolicy="no-referrer"
onError={() => setHasError(true)}
/>
);