diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx
index 2f78847..a9ce1ac 100644
--- a/client/src/components/video-card.tsx
+++ b/client/src/components/video-card.tsx
@@ -295,11 +295,8 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay
- {video.title.split(' - ')[0] || 'go4.video'}
+ {video.title}
-
- {video.title.split(' - ')[1] || video.title}
-
)}
@@ -320,11 +317,11 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay
{/* Description with expand/collapse */}
- {(video.title.split(' - ')[1] || video.description) && (
+ {video.description && (
- {video.title.split(' - ')[1] || video.description || ''}
+ {video.description || ''}
{!showMoreInfo && (