Remove non-essential video metadata from display

Remove the display of video views and upload date from the video card component.

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/P3O2FU7
This commit is contained in:
sebastjanartic 2025-08-29 10:23:57 +00:00
parent 1dbffb52bc
commit c14082c300

View File

@ -205,14 +205,6 @@ export default function VideoCard({ video, onClick, className = "" }: VideoCardP
>
{video.title}
</h3>
<div className="flex items-center space-x-2 text-xs md:text-sm text-bunny-muted">
<span data-testid={`text-views-${video.id}`}>
{formatViews(video.views)}
</span>
<span data-testid={`text-date-${video.id}`}>
{formatDate(video.createdAt)}
</span>
</div>
</div>
</div>
);