Skip to content

Commit

Permalink
Merge pull request #118 from RedGecko/hotfix/user-menu-dropdown
Browse files Browse the repository at this point in the history
Hotfix: display proper information in user menu dropdown
  • Loading branch information
nimdanitro authored Nov 23, 2022
2 parents 6e32c26 + 4446d2e commit 71877e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function UserNavBar() {
<span className="icon">
<FontAwesomeIcon icon={faUser} />
</span>
<span>{userState.username || userState.email}</span>
<span>{userState.email || userState.username}</span>
</span>
</div>
<hr className="navbar-divider" />
Expand Down

0 comments on commit 71877e4

Please sign in to comment.