Skip to content

Commit 70e9874

Browse files
authored
Merge pull request #699 from ishitaajain-coder/ishitaajain-coder-heartBtn2
Heart button
2 parents 16a3112 + 846cda0 commit 70e9874

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/podcasts/details.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export default function PodcastDetails(): ReactElement {
209209
toggleFavorite();
210210
}}
211211
>
212-
<span className="action-icon">{isFavorited ? "❤️" : "🤍"}</span>
212+
<span className="action-icon">{isFavorited ? "🤍" : "❤️"}</span>
213213
</button>
214214
</div>
215215
</div>

src/pages/podcasts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export default function Podcasts(): ReactElement {
316316
handleFavorite(podcast, e);
317317
}}
318318
>
319-
{favorites.includes(podcast.id) ? '❤️' : '🤍'}
319+
{favorites.includes(podcast.id) ? '🤍' : '❤️'}
320320
</button>
321321
<button className="action-btn share" title="Share podcast" onClick={(e) => {
322322
e.stopPropagation();

0 commit comments

Comments
 (0)