From 0fe536a7e2c86a13d47dc5948837dba30b6d2552 Mon Sep 17 00:00:00 2001 From: Freako <65329453+Goku-04@users.noreply.github.com> Date: Mon, 2 Oct 2023 23:19:40 +0530 Subject: [PATCH] Replace !(===) with !== --- .../experimental/components/library/GenresSectionContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/experimental/components/library/GenresSectionContainer.tsx b/src/apps/experimental/components/library/GenresSectionContainer.tsx index 3295be54d0..9945fd51e0 100644 --- a/src/apps/experimental/components/library/GenresSectionContainer.tsx +++ b/src/apps/experimental/components/library/GenresSectionContainer.tsx @@ -71,7 +71,7 @@ const GenresSectionContainer: FC = ({ cardLayout: false, shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait', showParentTitle: (itemType === BaseItemKind.MusicAlbum), - showYear: !(itemType === BaseItemKind.MusicAlbum) + showYear: (itemType !== BaseItemKind.MusicAlbum) }} />; };