Fix redirect bug when new template created (#1476)

This commit is contained in:
Shuchang Zheng
2025-01-03 11:20:44 -08:00
committed by GitHub
parent df2325077d
commit 2e34dad811

View File

@@ -102,7 +102,7 @@ function SavedTasks() {
queryClient.invalidateQueries({
queryKey: ["savedTasks"],
});
navigate(`/create/${response.workflow_permanent_id}`);
navigate(`/tasks/create/${response.workflow_permanent_id}`);
},
});