From 54fdfc7053842e5d1fe7e33bcf431048b102ee35 Mon Sep 17 00:00:00 2001 From: thibaud-leclere Date: Tue, 14 Apr 2026 15:38:34 +0200 Subject: [PATCH] =?UTF-8?q?fix(projects):=20rediriger=20vers=20le=20projet?= =?UTF-8?q?=20apr=C3=A8s=20=C3=A9dition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/projects/ProjectForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/projects/ProjectForm.tsx b/src/components/projects/ProjectForm.tsx index 90cb710..f5455c8 100644 --- a/src/components/projects/ProjectForm.tsx +++ b/src/components/projects/ProjectForm.tsx @@ -45,7 +45,7 @@ export default function ProjectForm() { if (isEditing && projectId) { await updateProject(projectId, name, baseBranch); window.dispatchEvent(new Event("orchai:refresh-projects")); - navigate("/"); + navigate(`/projects/${projectId}`); } else { const project = await createProject(name, pathOrUrl, baseBranch); window.dispatchEvent(new Event("orchai:refresh-projects"));