From 24409e49cb87537a1694ea8cc961428d824c3d90 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Fri, 27 Mar 2026 00:28:40 -0500 Subject: [PATCH] Fix basedavatar component to use AvatarPrimitive.Image --- packages/ui/src/based-avatar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/based-avatar.tsx b/packages/ui/src/based-avatar.tsx index a411146..24dc136 100644 --- a/packages/ui/src/based-avatar.tsx +++ b/packages/ui/src/based-avatar.tsx @@ -4,12 +4,12 @@ import type { ComponentProps } from 'react'; import * as AvatarPrimitive from '@radix-ui/react-avatar'; import { User } from 'lucide-react'; -import { AvatarImage, cn } from '@gib/ui'; +import { cn } from '@gib/ui'; type BasedAvatarProps = ComponentProps & { src?: string | null; fullName?: string | null; - imageProps?: Omit, 'data-slot'>; + imageProps?: Omit, 'data-slot'>; fallbackProps?: ComponentProps; userIconProps?: ComponentProps; };