Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/pages/podcasts/details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,11 @@ export default function PodcastDetails(): ReactElement {
toggleFavorite();
}}
>
<span className="action-icon">{isFavorited ? "❤️" : "🤍"}</span>
<span className="action-icon">{isFavorited ? "🤍" : "❤️"}</span>
</button>
</div>
</div>

{/* Main Content */}
<div className="details-content">
{/* Hero Section */}
<div className="details-hero">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/podcasts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export default function Podcasts(): ReactElement {
handleFavorite(podcast, e);
}}
>
{favorites.includes(podcast.id) ? '❤️' : '🤍'}
{favorites.includes(podcast.id) ? '🤍' : '❤️'}
</button>
<button className="action-btn share" title="Share podcast" onClick={(e) => {
e.stopPropagation();
Expand Down
Loading