From 8e8d19504e82c844c18d720a559f6f46464cfa5c Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Fri, 26 Sep 2025 14:55:52 +0000 Subject: [PATCH] Add a console log to indicate when the live streaming page is displayed Adds a `console.log` statement within the `LivePage` component to indicate its rendering. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 45a1dcfc-f8a2-475a-a6b9-96fbb841dc27 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/45a1dcfc-f8a2-475a-a6b9-96fbb841dc27/FiYsh04 --- .replit | 4 ---- client/src/pages/LivePage.tsx | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.replit b/.replit index aa0a35f..cd990cf 100644 --- a/.replit +++ b/.replit @@ -23,10 +23,6 @@ externalPort = 3001 localPort = 35637 externalPort = 3000 -[[ports]] -localPort = 45389 -externalPort = 3002 - [env] PORT = "5000" diff --git a/client/src/pages/LivePage.tsx b/client/src/pages/LivePage.tsx index 29b47d7..f27aab1 100644 --- a/client/src/pages/LivePage.tsx +++ b/client/src/pages/LivePage.tsx @@ -11,6 +11,8 @@ declare global { } export default function LivePage() { + console.log('🔴 LivePage component rendered'); + const videoRef = useRef(null); const hlsRef = useRef(null); const [isLoading, setIsLoading] = useState(true);