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 {