diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index acef545..d42edd7 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -67,10 +67,7 @@ export default function VideoPage() { const recommendedVideos = recommendedResponse?.videos?.filter(v => v.id !== videoId) || []; - // Debug log - console.log('Current video ID:', videoId); - console.log('Recommended response:', recommendedResponse); - console.log('Filtered recommended videos:', recommendedVideos); + // Track video view const handleVideoPlay = async () => { @@ -219,13 +216,7 @@ export default function VideoPage() { {formatDate(currentVideo.createdAt)} - {currentVideo.category && ( -
- - {currentVideo.category} - -
- )} + {currentVideo.description && (
diff --git a/server/bunny.ts b/server/bunny.ts index e1cd7ed..e1d91a5 100644 --- a/server/bunny.ts +++ b/server/bunny.ts @@ -70,7 +70,7 @@ export class BunnyService { videoUrlIframe: iframeUrl, // iframe fallback duration: Math.floor(bunnyVideo.length || 0), views: bunnyVideo.views || 0, - category: bunnyVideo.category || "", + category: "", tags: [], isPublic: true, uploadStatus: "completed",