diff --git a/apps/web/src/components/auth/redirect-handler.tsx b/apps/web/src/components/auth/redirect-handler.tsx index b1a6f31..e9912e0 100644 --- a/apps/web/src/components/auth/redirect-handler.tsx +++ b/apps/web/src/components/auth/redirect-handler.tsx @@ -10,7 +10,15 @@ interface RedirectHandlerProps { children: React.ReactNode; } -const publicPaths = ["/login", "/forgot-password", "/reset-password", "/auth/callback", "/auth/oidc/callback", "/s/", "/r/"]; +const publicPaths = [ + "/login", + "/forgot-password", + "/reset-password", + "/auth/callback", + "/auth/oidc/callback", + "/s/", + "/r/", +]; const homePaths = ["/"]; export function RedirectHandler({ children }: RedirectHandlerProps) {