mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-20 14:32:05 +00:00
dont show quality for shows on featured
This commit is contained in:
parent
c7bc1d238c
commit
3b32c5eef3
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ export function FeaturedCarousel({
|
||||||
else searchClasses = "opacity-100 transition-opacity duration-300";
|
else searchClasses = "opacity-100 transition-opacity duration-300";
|
||||||
|
|
||||||
const getQualityIndicator = () => {
|
const getQualityIndicator = () => {
|
||||||
if (!releaseInfo) return null;
|
if (!releaseInfo || currentMedia.type === "show") return null;
|
||||||
|
|
||||||
const hasDigitalRelease = !!releaseInfo.digital_release_date;
|
const hasDigitalRelease = !!releaseInfo.digital_release_date;
|
||||||
const hasTheatricalRelease = !!releaseInfo.theatrical_release_date;
|
const hasTheatricalRelease = !!releaseInfo.theatrical_release_date;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue