From 4ddd252e1eb1e00faf04801f9a44667811819c12 Mon Sep 17 00:00:00 2001 From: Caleb Allen Date: Tue, 24 Mar 2026 21:43:35 -0400 Subject: [PATCH] fix: don't double-pluralize Albums/Other Albums section headers --- .../components/explore-artist-details/explore-artist-details.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/explore-artist-details/explore-artist-details.ts b/frontend/src/components/explore-artist-details/explore-artist-details.ts index 82b522c..5965a78 100644 --- a/frontend/src/components/explore-artist-details/explore-artist-details.ts +++ b/frontend/src/components/explore-artist-details/explore-artist-details.ts @@ -828,7 +828,7 @@ export class ExploreArtistDetails extends LitElement { (g) => html`

- ${g.type === 'Other' ? 'Other Releases' : `${g.type}s`} + ${g.type === 'Other' ? 'Other Releases' : g.type.endsWith('s') ? g.type : `${g.type}s`}

${g.items.map((rg) => this.renderAlbumCard(rg))}