diff options
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/App.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 80b235ac..5d0cc832 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -108,9 +108,12 @@ export default function App() { <div id="header_wrapper"> { visitor.uid < 0 ? - <nav id="global"> - <a href="/">Loading...</a> - </nav> + <> + <div id="logo"><a href="/" /></div> + <nav id="global"> + <a href="/">Loading...</a> + </nav> + </> : visitor.uid > 0 ? <UserLink user={visitor} /> : <div id="logo"> |