fix: don't double-pluralize Albums/Other Albums section headers

This commit is contained in:
2026-03-24 21:43:35 -04:00
parent 450f6002a2
commit 4ddd252e1e
@@ -828,7 +828,7 @@ export class ExploreArtistDetails extends LitElement {
(g) => html`
<div class="disco-group">
<h4 class="disco-type-header">
${g.type === 'Other' ? 'Other Releases' : `${g.type}s`}
${g.type === 'Other' ? 'Other Releases' : g.type.endsWith('s') ? g.type : `${g.type}s`}
</h4>
<div class="album-grid">
${g.items.map((rg) => this.renderAlbumCard(rg))}