From 7f2ea9857dea51e538ceb2d9a4fb46a3e9902c96 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Tue, 7 Apr 2026 15:47:44 +0800 Subject: [PATCH] fix(auth): move Google callback page to correct route path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The callback page was placed under app/(auth)/callback/ — a Next.js route group — which mapped to /callback instead of /auth/callback. Move it to app/auth/callback/ so the URL matches the Google OAuth redirect URI. --- apps/web/app/{(auth) => auth}/callback/page.tsx | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename apps/web/app/{(auth) => auth}/callback/page.tsx (100%) diff --git a/apps/web/app/(auth)/callback/page.tsx b/apps/web/app/auth/callback/page.tsx similarity index 100% rename from apps/web/app/(auth)/callback/page.tsx rename to apps/web/app/auth/callback/page.tsx