diff --git a/src/renderer/features/artists/components/album-artist-detail-content.tsx b/src/renderer/features/artists/components/album-artist-detail-content.tsx index ad782174..227b97ba 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -357,7 +357,7 @@ export const AlbumArtistDetailContent = () => { - {showGenres && ( + {showGenres ? ( {detailQuery?.data?.genres?.map((genre) => ( @@ -377,7 +377,7 @@ export const AlbumArtistDetailContent = () => { ))} - )} + ) : null} {showBiography ? ( { /> ) : null} - {showTopSongs && ( + {showTopSongs ? ( { onRowDoubleClicked={handleRowDoubleClick} /> - )} + ) : null} {carousels