fix(core): avatar cannot load google user content url image (#11733)

This commit is contained in:
pengx17
2025-04-17 02:13:54 +00:00
parent 4a7f57ae3b
commit e8d2b0114b

View File

@@ -23,6 +23,7 @@ const AvatarImage = React.forwardRef<
>(({ className, ...props }, ref) => (
<AvatarPrimitive.Image
ref={ref}
crossOrigin="anonymous"
className={cn('aspect-square h-full w-full', className)}
{...props}
/>