diff --git a/src/components/VideoDetailContent.tsx b/src/components/VideoDetailContent.tsx index 5085b2e..ef36916 100644 --- a/src/components/VideoDetailContent.tsx +++ b/src/components/VideoDetailContent.tsx @@ -33,6 +33,7 @@ const VideoDetailContent: React.FC = ({ videoId, isModa const [copied, setCopied] = useState(false); const [isLandscape, setIsLandscape] = useState(false); + const [showSiteOverlay, setShowSiteOverlay] = useState(false); const [showLoginModal, setShowLoginModal] = useState(false); const [comments, setComments] = useState([]); @@ -68,6 +69,7 @@ const VideoDetailContent: React.FC = ({ videoId, isModa const fetchVideo = async () => { setLoading(true); setError(null); + setShowSiteOverlay(false); try { const data = await getVideoById(videoId); setVideo(data); @@ -221,18 +223,46 @@ const VideoDetailContent: React.FC = ({ videoId, isModa

{error}

) : video ? (
-