diff --git a/apps/web/app/_components/interactive-map-stage.tsx b/apps/web/app/_components/interactive-map-stage.tsx index 0b7240a..bfbf016 100644 --- a/apps/web/app/_components/interactive-map-stage.tsx +++ b/apps/web/app/_components/interactive-map-stage.tsx @@ -85,8 +85,8 @@ function resultForIssue(issue: string): { example: Example; index: number } { const stageMeta: Array<{ key: StageKey; label: string; hint: string }> = [ { key: "files", label: "Files", hint: "Finding relevant code" }, - { key: "checks", label: "Checks", hint: "Building validations" }, - { key: "risks", label: "Risks", hint: "Assessing impact" } + { key: "checks", label: "Tests", hint: "Finding checks" }, + { key: "risks", label: "Risks", hint: "Reviewing impact" } ]; function OutputCard({ @@ -103,9 +103,9 @@ function OutputCard({ onSelect: () => void; }) { const config = { - files: { icon: FileText, title: "Files to inspect", count: "7 files", metric: "Confidence", value: "High" }, - checks: { icon: CheckCircle, title: "Checks to run", count: "8 checks", metric: "Confidence", value: "High" }, - risks: { icon: Warning, title: "Risks to review", count: "6 risks", metric: "Impact", value: "Medium" } + files: { icon: FileText, title: "Files to open first", count: "7 files", metric: "Match", value: "Strong" }, + checks: { icon: CheckCircle, title: "Tests and checks", count: "8 checks", metric: "Support", value: "Found" }, + risks: { icon: Warning, title: "Risks worth reviewing", count: "6 risks", metric: "Impact", value: "Medium" } }[stage]; const Icon = config.icon; @@ -125,7 +125,7 @@ function OutputCard({ {items.map((item, index) => ( - {index + 1}{ready ? item : "Scanning repository signals…"}{stage === "files" ? (index === 0 ? "Exact match" : "High signal") : stage === "checks" ? "Evidence" : "Why"} + {index + 1}{ready ? item : "Scanning the repository…"}{stage === "files" ? (index === 0 ? "Strong match" : "Connected") : stage === "checks" ? "Suggested" : "Why it matters"} ))} @@ -195,12 +195,12 @@ export function InteractiveMapStage() { - Local demo + Runs here
-
1Describe the issue
in plain English
+
1Describe what needs fixing