Skip to content

Commit

Permalink
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/…
Browse files Browse the repository at this point in the history
…src/'

<!-- ELLIPSIS_HIDDEN -->

> [!IMPORTANT]
> Fixes navigation bug in `SavedTaskCard` by updating `navigate` call to use correct path format.
>
>   - **Bug Fix**:
>     - Fixes navigation bug in `SavedTaskCard` component by updating `navigate` call to use `/tasks/create/${workflowId}` instead of just `workflowId`.
>
> <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for 56717c8c6f69ccee3fecf2af9c73828749c957be. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Dec 5, 2024
1 parent a225920 commit cc77011
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 cc77011

Please sign in to comment.