fix album song count

This commit is contained in:
Kendall Garner 2025-10-12 16:44:05 -07:00
parent c88c6cf55e
commit 68476deb98
No known key found for this signature in database
GPG key ID: 9355F387FE765C94

View file

@ -83,9 +83,9 @@ export const AlbumDetailHeader = forwardRef(
},
{
id: 'songCount',
value: `${detailQuery?.data?.songCount} ${t('entity.track_other', {
value: t('entity.trackWithCount', {
count: detailQuery?.data?.songCount as number,
})}`,
}),
},
{
id: 'duration',