limiting pilot data for unauthenticated users (#68)

* limiting pilot data for unauthenticated users

* limiting pilot data for unauthenticated users
This commit was merged in pull request #68.
This commit is contained in:
2025-03-18 09:56:24 -05:00
committed by GitHub
parent 09f19b178f
commit adb8e51adf
15 changed files with 264 additions and 206 deletions

View File

@@ -34,15 +34,12 @@ const SiteNav = () => {
{
name: 'Logbook',
url: '/'
}
];
if (isAuthenticated) {
pages.push({
},
{
name: 'Pilots',
url: '/pilots'
})
}
}
];
setPages(pages)
};