From 67681771aa32d8c124a0938815528d1a323aa381 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Mon, 9 Jun 2025 00:40:41 +0900 Subject: [PATCH] Fix --- frontend/src/components/EpisodeList.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/EpisodeList.tsx b/frontend/src/components/EpisodeList.tsx index 2938c0d..2eb563e 100644 --- a/frontend/src/components/EpisodeList.tsx +++ b/frontend/src/components/EpisodeList.tsx @@ -28,6 +28,7 @@ interface EpisodeWithFeedInfo { feedTitle?: string; feedUrl: string; feedCategory?: string; + category?: string; } function EpisodeList() { @@ -164,7 +165,7 @@ function EpisodeList() { } }; - const filterFeedsByCategory = () => { + const filterEpisodesByCategory = () => { if (!selectedCategory) { setFilteredEpisodes(episodes); } else {