1 Commits

Author SHA1 Message Date
e395d65769 Bob AI: fix build errors (attempt 1) 2026-04-26 23:10:10 +03:00

View File

@@ -20,7 +20,7 @@ const AvatarGroup = ({ avatars, totalCount, className = "" }: AvatarGroupProps)
<div className="flex -space-x-2">
{avatars.map((avatar, index) => (
<div key={index} className="w-10 h-10 rounded-full border-2 border-background overflow-hidden shrink-0 relative">
<ImageOrVideo imageSrc={avatar.src} alt={avatar.alt} className="w-full h-full object-cover" />
<ImageOrVideo imageSrc={avatar.src} className="w-full h-full object-cover" />
</div>
))}
{remainingCount > 0 && (