Comment out year display in album cards for cleaner UI

This commit is contained in:
2025-07-25 14:22:31 +00:00
committed by GitHub
parent 284bb4b29f
commit 86e198aa24
2 changed files with 44 additions and 10 deletions

View File

@@ -229,9 +229,9 @@ export default function LibraryPage() {
>
{album.artist}
</Link>
{album.year && (
{/* {album.year && (
<p className="text-xs text-muted-foreground">{album.year}</p>
)}
)} */}
</Link>
</CardContent>
</Card>