From ee89b9379080dac690ea5a3bda8c9f52e6352517 Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Fri, 21 Nov 2025 19:32:11 +0530 Subject: [PATCH] chore: added comments for routing redirects --- frontend/src/routes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/routes.ts b/frontend/src/routes.ts index 4e1ba0169..265c64649 100644 --- a/frontend/src/routes.ts +++ b/frontend/src/routes.ts @@ -390,6 +390,8 @@ const organizationRoutes = route("/organizations/$orgId", [ ) ]), route("/networking", "organization/NetworkingPage/route.tsx"), + + // Added these dummy routes to avoid errors when navigating from the organization-redirect and project-redirect route("/projects/$", ""), route("/$", "") ]);