diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx
index 104b2ed..4bebe92 100644
--- a/client/src/components/video-card.tsx
+++ b/client/src/components/video-card.tsx
@@ -327,13 +327,13 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay
{!showPreview && !hideOverlay && !(isMobile && isVideoPage) && (
- {/* Artist in UPPERCASE - first line */}
+ {/* Artist/Performer in UPPERCASE - first line */}
- {video.artist ? video.artist.substring(0, 35) : (video.title.split(' - ')[0] || 'video.folx.tv').substring(0, 35)}
+ {(video.title.split(' - ')[0] || 'video.folx.tv').substring(0, 35)}
{/* Song title - second line */}
- {video.artist ? video.title.substring(0, 50) : (video.title.split(' - ')[1] || video.title).substring(0, 50)}
+ {(video.title.split(' - ')[1] || video.title).substring(0, 50)}
@@ -343,16 +343,13 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay
{/* Mobile info section - below video - only on video pages */}
{isMobile && isVideoPage && (
- {/* Artist in UPPERCASE - first line */}
+ {/* Artist/Performer in UPPERCASE - first line */}
- {video.artist ? (video.artist.length > 30 ? video.artist.substring(0, 30) + '...' : video.artist) : (video.title.split(' - ')[0] || 'video.folx.tv')}
+ {(video.title.split(' - ')[0] || 'video.folx.tv').length > 30 ? (video.title.split(' - ')[0] || 'video.folx.tv').substring(0, 30) + '...' : (video.title.split(' - ')[0] || 'video.folx.tv')}
{/* Song title - second line */}
- {video.artist ?
- (video.title.length > 40 ? video.title.substring(0, 40) + '...' : video.title) :
- (video.title.split(' - ')[1] || video.title).length > 40 ? (video.title.split(' - ')[1] || video.title).substring(0, 40) + '...' : (video.title.split(' - ')[1] || video.title)
- }
+ {(video.title.split(' - ')[1] || video.title).length > 40 ? (video.title.split(' - ')[1] || video.title).substring(0, 40) + '...' : (video.title.split(' - ')[1] || video.title)}
{/* Views and Date in one line */}