From 28568cbb9c55c413535d8b9755e5966f5be64c37 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 31 Dec 2024 14:56:41 +0100 Subject: [PATCH] fix: incorrect logic --- components/series/SeasonPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/series/SeasonPicker.tsx b/components/series/SeasonPicker.tsx index adb40bac..d823c6c2 100644 --- a/components/series/SeasonPicker.tsx +++ b/components/series/SeasonPicker.tsx @@ -206,7 +206,7 @@ export const SeasonPicker: React.FC = ({ item, initialSeasonIndex }) => { )) )} - {episodes?.length || 0 > 0 ? ( + {(episodes?.length || 0) === 0 ? ( No episodes for this season