remove bad check

This commit is contained in:
Eric Bailey
2025-01-18 16:03:36 -06:00
parent bee51d5270
commit ae9887491f
+1 -5
View File
@@ -221,10 +221,6 @@ function Feed() {
const player = players?.[index % 3] const player = players?.[index % 3]
const currentSource = currentSources[index % 3] const currentSource = currentSources[index % 3]
if (!currentSource?.moderation) {
return null
}
return ( return (
<VideoItem <VideoItem
player={player} player={player}
@@ -235,7 +231,7 @@ function Feed() {
index === currentIndex && index === currentIndex &&
currentSource?.source === post.embed.playlist currentSource?.source === post.embed.playlist
} }
moderation={currentSource.moderation} moderation={currentSource?.moderation}
scrollGesture={scrollGesture} scrollGesture={scrollGesture}
/> />
) )