From bd101d03fd3f76955e7af861029bb7b0feb299cc Mon Sep 17 00:00:00 2001 From: Christopher Burns <15834048+BurnedChris@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:01:09 +0000 Subject: [PATCH] fix: :bug: Fixed bug on avatars, where if the image is not square it will look squashed, using object-cover should fix that (#2688) --- apps/dashboard/components/ui/avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/components/ui/avatar.tsx b/apps/dashboard/components/ui/avatar.tsx index 05ab6aa4b6..13791eee9b 100644 --- a/apps/dashboard/components/ui/avatar.tsx +++ b/apps/dashboard/components/ui/avatar.tsx @@ -23,7 +23,7 @@ const AvatarImage = React.forwardRef< >(({ className, ...props }, ref) => ( ));