diff --git a/components/StreamerCard/index.jsx b/components/StreamerCard/index.jsx index f970cce..91fd869 100644 --- a/components/StreamerCard/index.jsx +++ b/components/StreamerCard/index.jsx @@ -16,7 +16,7 @@ function StreamerCard({ data }) { const blurhash = "LcKUTa%gOYWBYRt6xuoJo~s8V@fk"; return ( - + { - if (followMids.length === 0) return; + if (followMids.length === 0) { + setData((prev) => []); + return; + } + if (data.length === 0 && type === "bottom") return; if (!more) return; try { const apiUrl = process.env.EXPO_PUBLIC_API_URL; @@ -135,7 +139,7 @@ export default function FollowStream() {