Fix join page
This commit is contained in:
parent
a76d9b4c79
commit
fc4d9ca6de
1 changed files with 7 additions and 8 deletions
|
|
@ -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 />} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue