diff --git a/.replit b/.replit index 69e9900..77a16c9 100644 --- a/.replit +++ b/.replit @@ -15,10 +15,6 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 -[[ports]] -localPort = 33401 -externalPort = 3001 - [[ports]] localPort = 35637 externalPort = 3000 diff --git a/client/src/pages/LivePage.tsx b/client/src/pages/LivePage.tsx index 5379659..46b4d6f 100644 --- a/client/src/pages/LivePage.tsx +++ b/client/src/pages/LivePage.tsx @@ -17,7 +17,6 @@ export default function LivePage() { const [isPlaying, setIsPlaying] = useState(false); const [volume, setVolume] = useState(1); const [isMuted, setIsMuted] = useState(false); - const [isFullscreen, setIsFullscreen] = useState(false); const [error, setError] = useState(null); // HLS stream URL @@ -224,7 +223,7 @@ export default function LivePage() { // Add a small delay to ensure DOM is ready const timer = setTimeout(() => { initializePlayer(); - }, 100); + }, 200); return () => { clearTimeout(timer);