Fix join page

This commit is contained in:
Arthur Belleville 2025-07-09 22:00:53 +02:00
parent a76d9b4c79
commit fc4d9ca6de
No known key found for this signature in database

View file

@ -68,16 +68,15 @@ export const App = () => {
<Route
element={
<>
<ProtectedRoute
fallback="/login"
shouldRedirectToCurrentPage
/>
<Layout />
</>
<ProtectedRoute
fallback="/login"
shouldRedirectToCurrentPage
/>
}
>
<Route path="join/:tablo_name" element={<JoinPage />} />
<Route element={<Layout />}>
<Route path="join/:tablo_name" element={<JoinPage />} />
</Route>
</Route>
<Route path="login-with-oauth" element={<OAuthSigninPage />} />
<Route path="landing" element={<LandingPage />} />