From 10bd6848ef19038ad514872b977820e3a2f90446 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Mon, 27 Apr 2026 16:39:54 -0400 Subject: [PATCH] Simplify podcast highlight labels on episodes page --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index bc0ba71..8054917 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1025,7 +1025,7 @@ function PodcastHighlightsSection({ content }: { content: SiteContent }) {
{links.map(link => { const hasRichContent = !!(link.embedUrl || (link.discussionQuestions ?? []).length > 0 || link.showNotes) - const label = <>{link.episodeNumber ? `Ep. ${link.episodeNumber}: ` : ''}{link.title || link.url}{link.summary ? ` — ${link.summary}` : ''} + const label = <>{link.episodeNumber ? `Ep. ${link.episodeNumber}: ` : ''}{link.title || link.url} // Use external link only when there's a url AND no rich detail-page content if (!hasRichContent && link.url) { return (