From e612f2029d4d73b0bf6c7d83c06cd6590f5cf3e1 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 28 Aug 2025 21:11:29 +0000 Subject: [PATCH] Remove custom video player controls from modal Removes the state and JSX related to custom play button and hover effects for controls in `bunny-video-modal.tsx`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2eb1084e-b728-4449-9231-f1665924c8d5 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2eb1084e-b728-4449-9231-f1665924c8d5/AmbacT4 --- client/src/components/bunny-video-modal.tsx | 31 +-------------------- 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/client/src/components/bunny-video-modal.tsx b/client/src/components/bunny-video-modal.tsx index 1e73142..18a115b 100644 --- a/client/src/components/bunny-video-modal.tsx +++ b/client/src/components/bunny-video-modal.tsx @@ -53,7 +53,6 @@ function formatDate(date: Date | string): string { export default function BunnyVideoModal({ video, isOpen, onClose, onEdit, videos = [], onVideoChange }: BunnyVideoModalProps) { const [showShareMenu, setShowShareMenu] = useState(false); - const [showCustomControls, setShowCustomControls] = useState(true); // Navigation functions const getCurrentVideoIndex = () => { @@ -259,14 +258,7 @@ export default function BunnyVideoModal({ video, isOpen, onClose, onEdit, videos