Skip to content

Commit

Permalink
Fix missing route (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
msalihaltun authored Aug 2, 2024
1 parent 1cca837 commit 5791410
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions skyvern-frontend/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { Workflows } from "./routes/workflows/Workflows";
import { WorkflowPage } from "./routes/workflows/WorkflowPage";
import { WorkflowRunParameters } from "./routes/workflows/WorkflowRunParameters";
import { RetryTask } from "./routes/tasks/create/retry/RetryTask";
import { WorkflowRun } from "./routes/workflows/WorkflowRun";

const router = createBrowserRouter([
{
Expand Down Expand Up @@ -106,6 +107,10 @@ const router = createBrowserRouter([
path: "run",
element: <WorkflowRunParameters />,
},
{
path: ":workflowRunId",
element: <WorkflowRun />,
},
],
},
],
Expand Down

0 comments on commit 5791410

Please sign in to comment.