move FollowedBy below bio in profile
continuous-integration/drone/push Build is running Details

This commit is contained in:
Martti Malmi 2023-11-29 15:36:51 +02:00
parent 902e2dd960
commit b37d2b0fe8
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,6 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
<FollowsYou followsMe={follows.includes(loginPubKey ?? "")} />
</h2>
{user?.nip05 && <Nip05 nip05={user.nip05} pubkey={user.pubkey} />}
{user?.pubkey && <FollowedBy pubkey={user.pubkey} />}
</div>
{showBadges && <BadgeList badges={badges} />}
{showStatus && <>{musicStatus()}</>}
@ -347,6 +346,7 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
<div className="details-wrapper w-max">
{username()}
{bio()}
{user?.pubkey && <FollowedBy pubkey={user.pubkey} />}
</div>
);
}