From a4d20848fed6949c26e3da723779595ab080ba1c Mon Sep 17 00:00:00 2001 From: brooketopcoder Date: Thu, 5 May 2022 13:20:23 -0700 Subject: [PATCH] PROD-1850 #comment hide navigation for /account page #time 5m --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 396a7b2..ef8fbb4 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -44,7 +44,7 @@ const App = () => { const location = useLocation(); // if this is the self-service app, don't display anything - if (!!['/self-service', '/work'].find(path => location.pathname.startsWith(path))) { + if (!!['/self-service', '/work', '/account'].find(path => location.pathname.startsWith(path))) { return <> }