diff --git a/src/pages/podcasts/details.tsx b/src/pages/podcasts/details.tsx index d699c5fb..f252409a 100644 --- a/src/pages/podcasts/details.tsx +++ b/src/pages/podcasts/details.tsx @@ -209,7 +209,7 @@ export default function PodcastDetails(): ReactElement { toggleFavorite(); }} > - {isFavorited ? "❤️" : "🤍"} + {isFavorited ? "🤍" : "❤️"} diff --git a/src/pages/podcasts/index.tsx b/src/pages/podcasts/index.tsx index 8676c83b..a80a30cd 100644 --- a/src/pages/podcasts/index.tsx +++ b/src/pages/podcasts/index.tsx @@ -316,7 +316,7 @@ export default function Podcasts(): ReactElement { handleFavorite(podcast, e); }} > - {favorites.includes(podcast.id) ? '❤️' : '🤍'} + {favorites.includes(podcast.id) ? '🤍' : '❤️'}