fix: redirect to /overview after project creation

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-19 12:30:22 -08:00
parent e3a6641e3c
commit 4678928ee0

View File

@@ -140,7 +140,7 @@ export function ProjectCreationModal({
const handleFinish = () => {
onOpenChange(false);
if (createdProjectId) {
router.push(`/${workspace}/project/${createdProjectId}/v_ai_chat`);
router.push(`/${workspace}/project/${createdProjectId}/overview`);
}
};