From 9041fe7472d5044101cdc1e1c0dc3c56367b288a Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:42:14 -0500 Subject: [PATCH] =?UTF-8?q?feat:=20Make=20Nav=20Visible=20by=20Default=20o?= =?UTF-8?q?n=20Clean=20Install=20=F0=9F=A7=AD=20(#1309)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/routes/Root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/routes/Root.tsx b/client/src/routes/Root.tsx index 992bf50732..3f2af6a0d0 100644 --- a/client/src/routes/Root.tsx +++ b/client/src/routes/Root.tsx @@ -14,7 +14,7 @@ export default function Root() { const { isAuthenticated } = useAuthContext(); const [navVisible, setNavVisible] = useState(() => { const savedNavVisible = localStorage.getItem('navVisible'); - return savedNavVisible !== null ? JSON.parse(savedNavVisible) : false; + return savedNavVisible !== null ? JSON.parse(savedNavVisible) : true; }); const submission = useRecoilValue(store.submission);