Skip to content

Commit

Permalink
Replace !(===) with !==
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbr04 authored Oct 2, 2023
1 parent fb77e19 commit 0fe536a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}}
/>;
};
Expand Down

0 comments on commit 0fe536a

Please sign in to comment.