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 {