diff options
Diffstat (limited to 'pages/en/index.js')
| -rw-r--r-- | pages/en/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/en/index.js b/pages/en/index.js index 5577fc4..acd3705 100644 --- a/pages/en/index.js +++ b/pages/en/index.js @@ -398,7 +398,7 @@ export default function Home({ detail, populars, upComing }) { animate={{ opacity: 1 }} transition={{ duration: 0.5, staggerChildren: 0.2 }} // Add staggerChildren prop > - {user?.length > 0 && ( + {user?.length > 0 && user?.some((i) => i?.watchId) && ( <motion.section // Add motion.div to each child component key="recentlyWatched" initial={{ y: 20, opacity: 0 }} |