From 1106e95ad6a9ba6f94bd95ddd5cb773b97d9a459 Mon Sep 17 00:00:00 2001 From: DaKheera47 Date: Tue, 20 Jan 2026 22:53:13 +0000 Subject: [PATCH] better copy --- orchestrator/src/client/components/JobHeader.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orchestrator/src/client/components/JobHeader.tsx b/orchestrator/src/client/components/JobHeader.tsx index bbca08e..b1e15f1 100644 --- a/orchestrator/src/client/components/JobHeader.tsx +++ b/orchestrator/src/client/components/JobHeader.tsx @@ -115,7 +115,7 @@ const SponsorPill: React.FC = ({ score, names, onCheck }) => { }; const status = getStatus(score); - const tooltipContent = `${score}% match${parsedNames.length > 0 ? `: ${parsedNames.join(", ")}` : ""}`; + const tooltipContent = `${score}% match`; return ( @@ -129,7 +129,7 @@ const SponsorPill: React.FC = ({ score, names, onCheck }) => { {parsedNames.length > 0 && (

- Matched: + Matched {parsedNames.join(", ")}

)}