diff --git a/apps/arc-web/app/layouts/app-shell.tsx b/apps/arc-web/app/layouts/app-shell.tsx index 2bd615163..a7d7de40b 100644 --- a/apps/arc-web/app/layouts/app-shell.tsx +++ b/apps/arc-web/app/layouts/app-shell.tsx @@ -19,7 +19,7 @@ const user = { const navigation = [ { name: "Start", href: "/start" }, - { name: "Pipeline Runs", href: "/pipelines" }, + { name: "Workflow Runs", href: "/runs" }, { name: "Insights", href: "/insights" }, { name: "Settings", href: "/settings" }, ]; diff --git a/apps/arc-web/app/routes.ts b/apps/arc-web/app/routes.ts index eb7eab8a2..3e18932b2 100644 --- a/apps/arc-web/app/routes.ts +++ b/apps/arc-web/app/routes.ts @@ -9,7 +9,7 @@ export default [ index("routes/redirect-home.tsx"), layout("layouts/app-shell.tsx", [ route("start", "routes/start.tsx"), - route("pipelines", "routes/pipelines.tsx"), + route("runs", "routes/pipelines.tsx"), route("insights", "routes/insights.tsx"), route("settings", "routes/settings.tsx"), ]), diff --git a/apps/arc-web/app/routes/pipelines.tsx b/apps/arc-web/app/routes/pipelines.tsx index ebd2ca0ec..5706ff6f5 100644 --- a/apps/arc-web/app/routes/pipelines.tsx +++ b/apps/arc-web/app/routes/pipelines.tsx @@ -1,7 +1,7 @@ import type { Route } from "./+types/pipelines"; export function meta({}: Route.MetaArgs) { - return [{ title: "Pipeline Runs — Arc" }]; + return [{ title: "Workflow Runs — Arc" }]; }