From 444ccc03ed7d266ee2bfc70af261f19f9a484f47 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 29 Jul 2024 23:09:46 +0800 Subject: [PATCH] chore: tweak default title --- 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 e95c08f6..18c7e6ec 100644 --- a/web/src/components/UserBanner.tsx +++ b/web/src/components/UserBanner.tsx @@ -17,7 +17,7 @@ const UserBanner = (props: Props) => { const t = useTranslate(); const navigateTo = useNavigateTo(); const user = useCurrentUser(); - const title = user ? user.nickname || user.username : "memos"; + const title = user ? user.nickname || user.username : "Memos"; const avatarUrl = user ? user.avatarUrl : "/full-logo.webp"; const handleSignOut = async () => {