fixed styling and hiding navigation bar on StartPage and login and register button are navigating to login page

This commit is contained in:
Clément Le Bihan
2023-04-08 22:52:13 +02:00
parent 950e4c7767
commit dc9f74c047
2 changed files with 9 additions and 11 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ const protectedRoutes = () => ({
}) as const;
const publicRoutes = () => ({
Start: { component: StartPageView, options: { title: translate('welcome') } },
Start: { component: StartPageView, options: { title: translate('welcome'), headerShown: false } },
Login: { component: AuthenticationView, options: { title: translate('signInBtn') } },
}) as const;