We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85356f9 commit 6e2221aCopy full SHA for 6e2221a
client/src/routes/Root.tsx
@@ -14,7 +14,7 @@ export default function Root() {
14
const { isAuthenticated } = useAuthContext();
15
const [navVisible, setNavVisible] = useState(() => {
16
const savedNavVisible = localStorage.getItem('navVisible');
17
- return savedNavVisible !== null ? JSON.parse(savedNavVisible) : false;
+ return savedNavVisible !== null ? JSON.parse(savedNavVisible) : true;
18
});
19
20
const submission = useRecoilValue(store.submission);
0 commit comments