From 115b5551b3420a2f7059bbddb40bfb72614bfd95 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 14 Mar 2024 09:11:57 +0800 Subject: [PATCH] chore: tweak default avatar --- web/src/components/UserBanner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/UserBanner.tsx b/web/src/components/UserBanner.tsx index 0ee925c6..e514c825 100644 --- a/web/src/components/UserBanner.tsx +++ b/web/src/components/UserBanner.tsx @@ -18,7 +18,7 @@ const UserBanner = (props: Props) => { const { systemStatus } = globalStore.state; const user = useCurrentUser(); const title = user ? user.nickname || user.username : systemStatus.customizedProfile.name || "memos"; - const avatarUrl = user ? user.avatarUrl : systemStatus.customizedProfile.logoUrl; + const avatarUrl = user ? user.avatarUrl : "/full-logo.webp"; const handleSignOut = async () => { await authServiceClient.signOut({});