Commit 444ccc03 authored by Steven's avatar Steven

chore: tweak default title

parent 117077ac
...@@ -17,7 +17,7 @@ const UserBanner = (props: Props) => { ...@@ -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 () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment