From 8eed9c267c337321dd4b673b15427a55e99585f2 Mon Sep 17 00:00:00 2001 From: Xudong Cai Date: Thu, 30 Mar 2023 22:21:29 +0800 Subject: [PATCH] fix: logo img rounded (#1427) rounded-full move to img tag --- web/src/components/UserAvatar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/UserAvatar.tsx b/web/src/components/UserAvatar.tsx index 849acd34..1ef70137 100644 --- a/web/src/components/UserAvatar.tsx +++ b/web/src/components/UserAvatar.tsx @@ -6,8 +6,8 @@ interface Props { const UserAvatar = (props: Props) => { const { avatarUrl, className } = props; return ( -
- +
+
); };