diff --git a/src/renderer/features/albums/components/album-detail-content.tsx b/src/renderer/features/albums/components/album-detail-content.tsx index 3e96d3106..c82f97751 100644 --- a/src/renderer/features/albums/components/album-detail-content.tsx +++ b/src/renderer/features/albums/components/album-detail-content.tsx @@ -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',