From b361028b9566581f9b1565d5509dbde1a1babffc Mon Sep 17 00:00:00 2001 From: jadapema Date: Thu, 6 Feb 2025 07:52:56 -0600 Subject: [PATCH] fix: update metadata --- src/components/avatar/avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/avatar/avatar.tsx b/src/components/avatar/avatar.tsx index 6009011b..31792309 100644 --- a/src/components/avatar/avatar.tsx +++ b/src/components/avatar/avatar.tsx @@ -13,7 +13,7 @@ interface AvatarProfileProps { const AvatarProfile: FC = ({ src, alt, sx, ...other }) => { //Check if src is a valid URL starting with http or https; if not, use the dicebear API to generate a random avatar - const imageSrc = src.startsWith('http') || src.startsWith('https') ? src : dicebear(src); + const imageSrc = src.startsWith('http') || src.startsWith('blob') || src.startsWith('https') ? src : dicebear(src); // Default styles for the Avatar component sx = {