fix album tags always showing compilation (#1313)

This commit is contained in:
jeffvli
2025-12-04 18:23:44 -08:00
parent e37c76301d
commit ab9da5207c
@@ -134,10 +134,9 @@ const AlbumMetadataTags = ({ album }: AlbumMetadataTagsProps) => {
},
{
id: 'isCompilation',
value:
album.isCompilation !== null
? t('filter.isCompilation', { postProcess: 'sentenceCase' })
: undefined,
value: album?.isCompilation
? t('filter.isCompilation', { postProcess: 'sentenceCase' })
: undefined,
},
{
id: 'recordLabels',