From 5a368dc794d6e045411efef988ff25669450a715 Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 24 Mar 2026 21:43:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E4=B8=8B=E5=B0=81=E9=9D=A2=E5=9B=BE=E5=8D=A0=E4=BD=8D=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E8=89=B2=E8=B7=9F=E9=9A=8F=E5=8D=A1=E7=89=87=E9=A2=9C?= =?UTF-8?q?=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/LiveCard.tsx | 2 +- components/VideoCard.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/LiveCard.tsx b/components/LiveCard.tsx index 6e24058..0fec613 100644 --- a/components/LiveCard.tsx +++ b/components/LiveCard.tsx @@ -43,7 +43,7 @@ export const LiveCard = React.memo(function LiveCard({ source={{ uri: proxyImageUrl(item.cover) }} style={[ styles.thumb, - { width: cardWidth, height: cardWidth * 0.5625 }, + { width: cardWidth, height: cardWidth * 0.5625, backgroundColor: theme.card }, ]} resizeMode="cover" /> diff --git a/components/VideoCard.tsx b/components/VideoCard.tsx index 153fd7d..ac9c480 100644 --- a/components/VideoCard.tsx +++ b/components/VideoCard.tsx @@ -34,7 +34,7 @@ export const VideoCard = React.memo(function VideoCard({ item, onPress }: Props)