From a3eebd3a6ee2334207e24ae09578609579c85890 Mon Sep 17 00:00:00 2001 From: Freako <65329453+Goku-04@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:26:18 +0530 Subject: [PATCH] Update src/apps/experimental/components/library/GenresSectionContainer.tsx Remove parentheses Co-authored-by: Bill Thornton --- .../components/library/GenresSectionContainer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/experimental/components/library/GenresSectionContainer.tsx b/src/apps/experimental/components/library/GenresSectionContainer.tsx index 9945fd51e0..2ff0a10eb4 100644 --- a/src/apps/experimental/components/library/GenresSectionContainer.tsx +++ b/src/apps/experimental/components/library/GenresSectionContainer.tsx @@ -70,8 +70,8 @@ const GenresSectionContainer: FC = ({ centerText: true, cardLayout: false, shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait', - showParentTitle: (itemType === BaseItemKind.MusicAlbum), - showYear: (itemType !== BaseItemKind.MusicAlbum) + showParentTitle: itemType === BaseItemKind.MusicAlbum, + showYear: itemType !== BaseItemKind.MusicAlbum }} />; };