Skip to content

Commit

Permalink
fix: remove quotes from fc relevant followers, size AvatarGroup image
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Sep 6, 2024
1 parent b122b64 commit 81e2a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const RelevantFollowers = ({
Followed by <span className="font-bold">{firstFc.display_name}</span>
{secondFc && (
<>
<span>", "</span>
<span>, </span>
<span className="font-bold">{secondFc.display_name}</span>
</>
)}{" "}
Expand Down
2 changes: 1 addition & 1 deletion src/v2/components/ui/AvatarGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const AvatarGroup = ({
<div className="ml-3 flex">
{imageUrls.map((src, i) => (
<Avatar key={i} className={cn(avatarVariants(avatarProps), "-ml-3")}>
<AvatarImage src={src} alt="avatar" />
<AvatarImage src={src} alt="avatar" className="size-full object-cover" />
<AvatarFallback>
<Skeleton className="size-full" />
</AvatarFallback>
Expand Down

0 comments on commit 81e2a2e

Please sign in to comment.