Skip to content

Commit

Permalink
Fix a navigation bug with saved tasks (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Dec 5, 2024
1 parent a225920 commit 2dea40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyvern-frontend/src/routes/tasks/create/SavedTaskCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function SavedTaskCard({ workflowId, title, url, description }: Props) {
},
)}
onClick={() => {
navigate(workflowId);
navigate(`/tasks/create/${workflowId}`);
}}
>
{description}
Expand Down

0 comments on commit 2dea40a

Please sign in to comment.