This commit is contained in:
2025-06-09 00:40:41 +09:00
parent ac879b243d
commit 67681771aa

View File

@ -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 {