From 6a45dd622b0b09f2fa6f61c929136cf324875839 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 3 Aug 2021 22:23:14 +0800 Subject: [PATCH] landing page account button --- frontend/src/components/LandingNavbar.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/LandingNavbar.js b/frontend/src/components/LandingNavbar.js index d97d2845..a65a9f38 100644 --- a/frontend/src/components/LandingNavbar.js +++ b/frontend/src/components/LandingNavbar.js @@ -87,10 +87,21 @@ const LandingNavbar = () => { Log in )} - {ui.isLoggedIn && } + {ui.isLoggedIn && ( + + )} )} + {ui.isLoggedIn && ui.isMobileView && ( + <> + + + + )} );