Fix: Correct avatar display in header

This commit is contained in:
gpt-engineer-app[bot]
2025-10-13 13:53:15 +00:00
parent 0c7b898917
commit 233e8efd62
3 changed files with 16 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ const AvatarFallback = React.forwardRef<
>(({ className, ...props }, ref) => (
<AvatarPrimitive.Fallback
ref={ref}
className={cn("flex h-full w-full items-center justify-center rounded-full bg-muted", className)}
className={cn("flex h-full w-full items-center justify-center rounded-full bg-muted text-foreground", className)}
{...props}
/>
));