fix casing on artist albums title

This commit is contained in:
jeffvli 2025-05-07 01:15:00 -07:00
parent 6f37e13611
commit 9a59ce3613

View file

@ -129,7 +129,7 @@ const AlbumListRoute = () => {
const artist = searchParams.get('artistName');
const title = artist
? t('page.albumList.artistAlbums', { artist })
? t('page.albumList.artistAlbums', { artist, postProcess: 'sentenceCase' })
: genreId
? t('page.albumList.genreAlbums', { genre: titleCase(genreTitle) })
: undefined;