dont show quality for shows on featured

This commit is contained in:
Pas 2025-06-04 14:48:21 -06:00
parent c7bc1d238c
commit 3b32c5eef3

View file

@ -474,7 +474,7 @@ export function FeaturedCarousel({
else searchClasses = "opacity-100 transition-opacity duration-300";
const getQualityIndicator = () => {
if (!releaseInfo) return null;
if (!releaseInfo || currentMedia.type === "show") return null;
const hasDigitalRelease = !!releaseInfo.digital_release_date;
const hasTheatricalRelease = !!releaseInfo.theatrical_release_date;