Big progress!

This commit is contained in:
Dave Richer
2023-12-12 12:37:50 -05:00
parent b0d1a7b65e
commit fe80256a40
13 changed files with 133 additions and 219 deletions

View File

@@ -16,9 +16,9 @@ export function LandingPage({ currentUser }) {
useEffect(() => {
if (!currentUser.authorized) {
navigate('/manage');
navigate('/manage/');
}
}, [currentUser, navigate]);
return currentUser.authorized ? <LandingPageStatic /> : <div />;
return <LandingPageStatic /> ;
}