Skip to content

Commit 8618e3c

Browse files
authored
PAY-3280 Fix gated access display (#9311)
1 parent 69e76c7 commit 8618e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/src/components/track/GatedContentSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ export const GatedContentSection = ({
663663
if (!streamConditions) return null
664664
if (!shouldDisplay) return null
665665

666-
if (!hasStreamAccess) {
666+
if (hasStreamAccess) {
667667
return (
668668
<div className={cn(styles.gatedContentSection, fadeIn, wrapperClassName)}>
669669
<UnlockedGatedContentSection

0 commit comments

Comments
 (0)