move FollowedBy below bio in profile
This commit is contained in:
@ -160,7 +160,6 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
|
|||||||
<FollowsYou followsMe={follows.includes(loginPubKey ?? "")} />
|
<FollowsYou followsMe={follows.includes(loginPubKey ?? "")} />
|
||||||
</h2>
|
</h2>
|
||||||
{user?.nip05 && <Nip05 nip05={user.nip05} pubkey={user.pubkey} />}
|
{user?.nip05 && <Nip05 nip05={user.nip05} pubkey={user.pubkey} />}
|
||||||
{user?.pubkey && <FollowedBy pubkey={user.pubkey} />}
|
|
||||||
</div>
|
</div>
|
||||||
{showBadges && <BadgeList badges={badges} />}
|
{showBadges && <BadgeList badges={badges} />}
|
||||||
{showStatus && <>{musicStatus()}</>}
|
{showStatus && <>{musicStatus()}</>}
|
||||||
@ -347,6 +346,7 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
|
|||||||
<div className="details-wrapper w-max">
|
<div className="details-wrapper w-max">
|
||||||
{username()}
|
{username()}
|
||||||
{bio()}
|
{bio()}
|
||||||
|
{user?.pubkey && <FollowedBy pubkey={user.pubkey} />}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user