From 89693711347f5482f9571c7f2617c46a3d67776f Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Thu, 30 Apr 2026 18:50:55 -0700 Subject: [PATCH] fix: redirect to /product after project creation instead of /overview /overview does not exist as a route; the correct landing tab is /product. Made-with: Cursor --- components/project-creation/BuildSetup.tsx | 2 +- components/project-creation/ImportSetup.tsx | 2 +- components/project-creation/OssSetup.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/project-creation/BuildSetup.tsx b/components/project-creation/BuildSetup.tsx index 1c7fab2d..146ccbf5 100644 --- a/components/project-creation/BuildSetup.tsx +++ b/components/project-creation/BuildSetup.tsx @@ -52,7 +52,7 @@ export function BuildSetup({ workspace, onClose, onBack }: SetupProps) { } const data = await res.json(); onClose(); - router.push(`/${workspace}/project/${data.projectId}/overview`); + router.push(`/${workspace}/project/${data.projectId}/product`); } catch { toast.error("Something went wrong"); } finally { diff --git a/components/project-creation/ImportSetup.tsx b/components/project-creation/ImportSetup.tsx index a2a2865c..8e41caad 100644 --- a/components/project-creation/ImportSetup.tsx +++ b/components/project-creation/ImportSetup.tsx @@ -136,7 +136,7 @@ export function ImportSetup({ workspace, onClose, onBack }: SetupProps) { } const data = await res.json(); onClose(); - router.push(`/${workspace}/project/${data.projectId}/overview`); + router.push(`/${workspace}/project/${data.projectId}/product`); } catch { toast.error("Something went wrong"); } finally { diff --git a/components/project-creation/OssSetup.tsx b/components/project-creation/OssSetup.tsx index 5195d19e..eeeee612 100644 --- a/components/project-creation/OssSetup.tsx +++ b/components/project-creation/OssSetup.tsx @@ -69,7 +69,7 @@ export function OssSetup({ workspace, onClose, onBack }: SetupProps) { } const data = await res.json(); onClose(); - router.push(`/${workspace}/project/${data.projectId}/overview`); + router.push(`/${workspace}/project/${data.projectId}/product`); } catch { toast.error("Something went wrong"); } finally {