diff --git a/.replit b/.replit index cd990cf..25d9ce1 100644 --- a/.replit +++ b/.replit @@ -23,6 +23,10 @@ externalPort = 3001 localPort = 35637 externalPort = 3000 +[[ports]] +localPort = 45701 +externalPort = 3002 + [env] PORT = "5000" diff --git a/attached_assets/image_1758904381294.png b/attached_assets/image_1758904381294.png new file mode 100644 index 0000000..bc2174c Binary files /dev/null and b/attached_assets/image_1758904381294.png differ diff --git a/attached_assets/image_1758904520258.png b/attached_assets/image_1758904520258.png new file mode 100644 index 0000000..bc52c83 Binary files /dev/null and b/attached_assets/image_1758904520258.png differ diff --git a/attached_assets/image_1758904590270.png b/attached_assets/image_1758904590270.png new file mode 100644 index 0000000..f235b57 Binary files /dev/null and b/attached_assets/image_1758904590270.png differ diff --git a/attached_assets/image_1758904616244.png b/attached_assets/image_1758904616244.png new file mode 100644 index 0000000..7cfdec6 Binary files /dev/null and b/attached_assets/image_1758904616244.png differ diff --git a/client/src/pages/LivePage.tsx b/client/src/pages/LivePage.tsx index 1769a97..fb87484 100644 --- a/client/src/pages/LivePage.tsx +++ b/client/src/pages/LivePage.tsx @@ -33,7 +33,7 @@ export default function LivePage() { staleTime: 5 * 60 * 1000, // 5 minutes }); - const videos = (videosData && Array.isArray(videosData.videos)) ? videosData.videos : []; + const videos = (videosData && Array.isArray((videosData as any).videos)) ? (videosData as any).videos : []; useEffect(() => { // Set page meta tags @@ -452,52 +452,6 @@ export default function LivePage() { crossOrigin="anonymous" /> - {/* Live Overlay */} -