Skip to content

Commit

Permalink
Fix album detail header track count
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Sep 27, 2024
1 parent fc8110c commit 3c99a66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ export const AlbumDetailHeader = forwardRef(
},
{
id: 'songCount',
value: t('entity.song_many', {
value: `${detailQuery?.data?.songCount} ${t('entity.track_other', {
count: detailQuery?.data?.songCount as number,
}),
})}`,
},
{
id: 'duration',
Expand Down

0 comments on commit 3c99a66

Please sign in to comment.