diff --git a/apps/u3/src/container/Explore.tsx b/apps/u3/src/container/Explore.tsx index e58f2ece..a901f34a 100644 --- a/apps/u3/src/container/Explore.tsx +++ b/apps/u3/src/container/Explore.tsx @@ -74,7 +74,9 @@ export default function Explore() { } }); setHotPosts({ - posts: casts.splice(0, 6), + posts: casts + .filter((item) => item?.platform && item?.data) + .splice(0, 6), farcasterUserData: temp, isLoading: false, });