Replace !(===) with !==

This commit is contained in:
Freako
2023-10-02 23:19:40 +05:30
committed by GitHub
parent fb77e19da7
commit 0fe536a7e2
@@ -71,7 +71,7 @@ const GenresSectionContainer: FC<GenresSectionContainerProps> = ({
cardLayout: false,
shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait',
showParentTitle: (itemType === BaseItemKind.MusicAlbum),
showYear: !(itemType === BaseItemKind.MusicAlbum)
showYear: (itemType !== BaseItemKind.MusicAlbum)
}}
/>;
};