chore: remove "popular" accounts list

This commit is contained in:
2023-10-16 16:13:18 +01:00
parent a168465bdb
commit 0f40b9a426
7 changed files with 26 additions and 45 deletions

View File

@ -21,9 +21,5 @@ export default function TrendingUsers() {
if (!userList) return <PageSpinner />;
return (
<div className="p">
<FollowListBase pubkeys={userList} showAbout={true} />
</div>
);
return <FollowListBase pubkeys={userList} showAbout={true} />;
}