Parcourir la source

Show youtube thumbnails in cards

Remove category check to display YouTube thumbnails on NewsCard, enabling imageUrl rendering for all articles (including YouTube) in listing cards.

X-Lovable-Edit-ID: edt-93a85977-101b-436b-b16a-f12cd0d29370
gpt-engineer-app[bot] il y a 6 jours
Parent
commit
e0ef7cb3c5
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/components/NewsCard.tsx

+ 1 - 1
src/components/NewsCard.tsx

@@ -128,7 +128,7 @@ const NewsCard = ({
       
       <CardContent className="space-y-4" onClick={handleCardClick}>
         <div className="space-y-3">
-          {news.imageUrl && news.category !== 'youtube' && (
+          {news.imageUrl && (
             <div className="w-full">
               <img
                 src={news.imageUrl}