From cac73d5d0bb1ab2be37dd06eec1dec2521e7f6fd Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 16 Jan 2025 01:04:24 +0000 Subject: [PATCH] whoops, remove debug `false` --- src/screens/Feeds/VibeScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/Feeds/VibeScreen.tsx b/src/screens/Feeds/VibeScreen.tsx index 77572961b2..92611ff94e 100644 --- a/src/screens/Feeds/VibeScreen.tsx +++ b/src/screens/Feeds/VibeScreen.tsx @@ -278,7 +278,7 @@ function VibeItem({ (embed.aspectRatio?.width ?? 1) / (embed.aspectRatio?.height ?? 1) // if the video tall enough (tiktok/reels are 9:16) go cover mode - const isCloseEnough = false && videoAspectRatio <= 9 / 16 + const isCloseEnough = videoAspectRatio <= 9 / 16 const {status} = useEvent(player, 'statusChange', {status: player.status})