From f83682879ba1071741ff40026cc5d3ece975a803 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Tue, 30 Jun 2026 10:37:14 -0400 Subject: [PATCH] Remove archivedSeries from useGlobalSearch (field does not exist on SiteContent) Co-Authored-By: Claude Sonnet 4.6 --- src/hooks/useGlobalSearch.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/hooks/useGlobalSearch.ts b/src/hooks/useGlobalSearch.ts index 2d319ae..4dd04e1 100644 --- a/src/hooks/useGlobalSearch.ts +++ b/src/hooks/useGlobalSearch.ts @@ -118,17 +118,6 @@ export function useGlobalSearch(content: SiteContent) { } } - for (const series of content.archivedSeries ?? []) { - results.push({ - id: `series-${series.id}`, - type: 'series', - title: series.title, - subtitle: series.label || 'Archived Series', - description: series.description, - href: `/episodes#${series.id}`, - }) - } - for (const q of questions) { results.push({ id: `qa-${q.id}`,