Skip to content

Commit

Permalink
fix(ContributionCollection): add unoptimized prop to Guild Pin images
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Sep 27, 2024
1 parent 2d96535 commit 4eac0a8
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ export const ContributionCollection = ({
<HoverCard openDelay={100} closeDelay={100}>
<HoverCardTrigger>
<Avatar size="lg" className="-ml-3 border-2 border-card">
<AvatarImage src={pin.href} alt="guild pin" width={32} height={32} />
<AvatarImage
src={pin.href}
alt="guild pin"
width={32}
height={32}
unoptimized
/>
<AvatarFallback />
</Avatar>
</HoverCardTrigger>
Expand All @@ -54,6 +60,7 @@ export const ContributionCollection = ({
alt="guild pin"
width={32}
height={32}
unoptimized
/>
<Avatar
size="lg"
Expand All @@ -65,6 +72,7 @@ export const ContributionCollection = ({
alt="guild pin"
width={192}
height={192}
unoptimized
/>
<AvatarFallback />
</Avatar>
Expand Down

0 comments on commit 4eac0a8

Please sign in to comment.