From ff859c58bf851fcf4549da5593bd5b11043862e7 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 20:26:55 +0000 Subject: [PATCH] Update video pages to link directly to individual video content Modify FolxStadlPage to navigate to a dedicated video URL instead of opening a modal when a video is clicked. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/izllXJt --- client/src/pages/FolxStadlPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index de52734..77c2631 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -33,8 +33,8 @@ export default function FolxStadlPage() { const currentVideos = folxStadlVideos.slice(startIndex, endIndex); const handleVideoClick = (video: Video) => { - setSelectedVideo(video); - setIsModalOpen(true); + // Navigate to individual video page instead of modal + window.location.href = `/video/${video.id}`; }; const handleCloseModal = () => {