feat: add collection list

This commit is contained in:
Sonny
2024-05-14 13:54:50 +02:00
committed by Sonny
parent 5a8bda0322
commit a58d78302e
12 changed files with 122 additions and 24 deletions

View File

@@ -8,7 +8,12 @@ export default function UserCard() {
return (
isAuthenticated && (
<Item className="disable-hover">
<RoundedImage src={user.avatarUrl} width={24} alt={altImage} />
<RoundedImage
src={user.avatarUrl}
width={24}
alt={altImage}
referrerPolicy="no-referrer"
/>
{user.nickName}
</Item>
)