chore: tweak default title

This commit is contained in:
Steven
2024-07-29 23:09:46 +08:00
parent 117077ac8f
commit 444ccc03ed

View File

@@ -17,7 +17,7 @@ const UserBanner = (props: Props) => {
const t = useTranslate(); const t = useTranslate();
const navigateTo = useNavigateTo(); const navigateTo = useNavigateTo();
const user = useCurrentUser(); 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 avatarUrl = user ? user.avatarUrl : "/full-logo.webp";
const handleSignOut = async () => { const handleSignOut = async () => {