From c8d200b035858dbb713207f3593f338d0fab2a72 Mon Sep 17 00:00:00 2001 From: chintondutta Date: Tue, 11 Aug 2026 23:56:18 +0530 Subject: [PATCH] fix: rename org-selecion route folder to org-selection (typo) proxy.ts redirects users who are signed in but have no organization yet to /org-selection - but the actual page folder was spelled org-selecion (missing the second 't'). The redirect target and the real route never matched, so any newly-signed-in user without an org would land on a URL with no corresponding page - blank/broken page right after a fully successful sign-in, including 2FA. This was likely never caught before because most testing focused on Clerk/Convex auth completing successfully, not what happens immediately after for a user who doesn't have an org assigned yet. Verified: apps/web typecheck and build clean, route now correctly shows as /org-selection/[[...org-selection]]. --- .../{org-selecion => org-selection}/[[...org-selection]]/page.tsx | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename apps/web/app/(auth)/{org-selecion => org-selection}/[[...org-selection]]/page.tsx (100%) diff --git a/apps/web/app/(auth)/org-selecion/[[...org-selection]]/page.tsx b/apps/web/app/(auth)/org-selection/[[...org-selection]]/page.tsx similarity index 100% rename from apps/web/app/(auth)/org-selecion/[[...org-selection]]/page.tsx rename to apps/web/app/(auth)/org-selection/[[...org-selection]]/page.tsx