From 41910dafa9809304581eea2812a04476035727f8 Mon Sep 17 00:00:00 2001 From: shinya Date: Fri, 20 Jun 2025 01:35:02 +0800 Subject: [PATCH] fix: hide check circle in search page --- src/components/VideoCard.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/VideoCard.tsx b/src/components/VideoCard.tsx index 57c18fe..d22e3ae 100644 --- a/src/components/VideoCard.tsx +++ b/src/components/VideoCard.tsx @@ -141,8 +141,7 @@ export default function VideoCard({ } }; - const inFavorites = from === 'favorites'; - const hideCheckCircle = inFavorites; + const hideCheckCircle = from === 'favorites' || from === 'search'; return (