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 = () => {