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))}