diff --git a/skyvern-frontend/src/router.tsx b/skyvern-frontend/src/router.tsx
index 35bbb231..f94b4ac2 100644
--- a/skyvern-frontend/src/router.tsx
+++ b/skyvern-frontend/src/router.tsx
@@ -8,6 +8,9 @@ import { SettingsPageLayout } from "./routes/settings/SettingsPageLayout";
import { TaskDetails } from "./routes/tasks/detail/TaskDetails";
import { CreateNewTaskLayout } from "./routes/tasks/create/CreateNewTaskLayout";
import { CreateNewTaskFormPage } from "./routes/tasks/create/CreateNewTaskFormPage";
+import { TaskActions } from "./routes/tasks/detail/TaskActions";
+import { TaskRecording } from "./routes/tasks/detail/TaskRecording";
+import { TaskParameters } from "./routes/tasks/detail/TaskParameters";
const router = createBrowserRouter([
{
@@ -29,6 +32,24 @@ const router = createBrowserRouter([
{
path: ":taskId",
element: ,
+ children: [
+ {
+ index: true,
+ element: ,
+ },
+ {
+ path: "actions",
+ element: ,
+ },
+ {
+ path: "recording",
+ element: ,
+ },
+ {
+ path: "parameters",
+ element: ,
+ },
+ ],
},
],
},
diff --git a/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx b/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx
index 4f522b86..da11f795 100644
--- a/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx
+++ b/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx
@@ -42,7 +42,7 @@ function ActionScreenshot({ stepId, index }: Props) {
}
return screenshot ? (
-
+
) : (
diff --git a/skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx b/skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx
index 54fd4b0f..5aebbb92 100644
--- a/skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx
+++ b/skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx
@@ -23,7 +23,7 @@ function TaskActions() {
return (