diff --git a/web/components/ui/Followers/FollowersCollection.tsx b/web/components/ui/Followers/FollowersCollection.tsx index 0336474fb..484c5fb9a 100644 --- a/web/components/ui/Followers/FollowersCollection.tsx +++ b/web/components/ui/Followers/FollowersCollection.tsx @@ -37,7 +37,7 @@ export default function FollowerCollection() {
A message explaining how to follow goes here since there are no followers.
); - if (followers.length === 0) { + if (!followers?.length) { return noFollowers; }