diff --git a/web/components/ImageFallback.tsx b/web/components/ImageFallback.tsx index 9e449b9e..f8f2f113 100644 --- a/web/components/ImageFallback.tsx +++ b/web/components/ImageFallback.tsx @@ -13,26 +13,15 @@ export function ImageFallback({ width, height, url }: Props) { : url; return ( - { + (e.target as HTMLImageElement).src = "/avatar.svg"; }} - > - - + width={width} + height={height} + style={{ width, height, borderRadius: "50%" }} + alt="" + /> ); }