diff --git a/src/components/overlays/details/EpisodeCarousel.tsx b/src/components/overlays/details/EpisodeCarousel.tsx index 6e1d92a2..e3fefd4e 100644 --- a/src/components/overlays/details/EpisodeCarousel.tsx +++ b/src/components/overlays/details/EpisodeCarousel.tsx @@ -169,8 +169,8 @@ export function EpisodeCarousel({ 100 : 0; - // If watched (>90%), reset to 0%, otherwise set to 100% - const isWatched = percentage > 90; + // If watched (>80%), reset to 0%, otherwise set to 100% + const isWatched = percentage > 80; // Get the poster URL from the mediaPosterUrl prop const posterUrl = mediaPosterUrl;