We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16a3112 + 846cda0 commit 70e9874Copy full SHA for 70e9874
src/pages/podcasts/details.tsx
@@ -209,7 +209,7 @@ export default function PodcastDetails(): ReactElement {
209
toggleFavorite();
210
}}
211
>
212
- <span className="action-icon">{isFavorited ? "❤️" : "🤍"}</span>
+ <span className="action-icon">{isFavorited ? "🤍" : "❤️"}</span>
213
</button>
214
</div>
215
src/pages/podcasts/index.tsx
@@ -316,7 +316,7 @@ export default function Podcasts(): ReactElement {
316
handleFavorite(podcast, e);
317
318
319
- {favorites.includes(podcast.id) ? '❤️' : '🤍'}
+ {favorites.includes(podcast.id) ? '🤍' : '❤️'}
320
321
<button className="action-btn share" title="Share podcast" onClick={(e) => {
322
e.stopPropagation();
0 commit comments