forked from mirrors/pronouns.cc
fix(frontend): change User.username in Navigation
This commit is contained in:
parent
1c1d4d714f
commit
37c01753c9
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export default function Navigation() {
|
||||||
|
|
||||||
const nav = user ? (
|
const nav = user ? (
|
||||||
<>
|
<>
|
||||||
<NavItem href={`/u/${user.username}`}>@{user.username}</NavItem>
|
<NavItem href={`/u/${user.name}`}>@{user.name}</NavItem>
|
||||||
<NavItem href="/settings">Settings</NavItem>
|
<NavItem href="/settings">Settings</NavItem>
|
||||||
<NavItem href="/logout">Log out</NavItem>
|
<NavItem href="/logout">Log out</NavItem>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in a new issue