diff --git a/app/src/pages/ProgramDetail.tsx b/app/src/pages/ProgramDetail.tsx
index 7574d6b..547984f 100644
--- a/app/src/pages/ProgramDetail.tsx
+++ b/app/src/pages/ProgramDetail.tsx
@@ -1,7 +1,7 @@
import { useState } from "react"
import { useParams } from "react-router-dom"
import { useProgram } from "@/services/api/hooks"
-import { launcherLabel, subdomainUrl } from "@/lib/labels"
+import { subdomainUrl } from "@/lib/labels"
import { DetailHeader } from "@/components/detail/DetailHeader"
import { ConfigPanel } from "@/components/detail/ConfigPanel"
import { DeploymentsSection } from "@/components/detail/DeploymentsSection"
@@ -93,12 +93,6 @@ export function ProgramDetailPage() {
{deployment.version}
>
)}
- {deployment.runner && (
- <>
- Launcher
- {launcherLabel(deployment.runner)}
- >
- )}
{deployment.active !== null && (
<>
Active
diff --git a/app/src/types/index.ts b/app/src/types/index.ts
index a005b3a..e86e5b7 100644
--- a/app/src/types/index.ts
+++ b/app/src/types/index.ts
@@ -48,7 +48,6 @@ export interface ProgramSummary {
description: string | null
kind: string | null // derived: service | job | tool | static | reference
stack: string | null
- runner: string | null // inferred launch hint (python | command)
version: string | null
source: string | null
repo: string | null