Remove star button from AlbumPage; conditionally render PopularSongs section in ArtistPage based on mobile view

This commit is contained in:
2025-07-25 14:05:10 +00:00
committed by GitHub
parent f4c01e2d20
commit 284bb4b29f
2 changed files with 3 additions and 9 deletions

View File

@@ -173,14 +173,6 @@ export default function AlbumPage() {
>
<Play className="w-6 h-6" />
</Button>
<Button
onClick={handleStar}
variant="ghost"
className="w-12 h-12 rounded-full p-0"
title={isStarred ? "Unstar album" : "Star album"}
>
<Heart className={`w-6 h-6 ${isStarred ? 'text-primary' : 'text-gray-500'}`} fill={isStarred ? 'var(--primary)' : ""}/>
</Button>
</div>
</div>
</div>