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 broken link in `TaskActions.tsx` by updating the path in `navigate()` function.
>
>   - **Behavior**:
>     - Fixes broken link in `TaskActions.tsx` by updating the path in `navigate()` from `/create/retry/${task.task_id}` to `/tasks/create/retry/${task.task_id}`.
>
> <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 88104f2eccb7e064147076b18655d70ee2e478b0. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Jan 14, 2025
1 parent 111d1e3 commit 92e6e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyvern-frontend/src/routes/tasks/list/TaskActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function TaskActions({ task }: Props) {
</DialogTrigger>
<DropdownMenuItem
onSelect={() => {
navigate(`/create/retry/${task.task_id}`);
navigate(`/tasks/create/retry/${task.task_id}`);
}}
>
Rerun Task
Expand Down

0 comments on commit 92e6e75

Please sign in to comment.