From b37d2b0fe87be0851168c973eb5640f2137ee254 Mon Sep 17 00:00:00 2001 From: Martti Malmi Date: Wed, 29 Nov 2023 15:36:51 +0200 Subject: [PATCH] move FollowedBy below bio in profile --- packages/app/src/Pages/Profile/ProfilePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app/src/Pages/Profile/ProfilePage.tsx b/packages/app/src/Pages/Profile/ProfilePage.tsx index 96684ca3..fafc9b0c 100644 --- a/packages/app/src/Pages/Profile/ProfilePage.tsx +++ b/packages/app/src/Pages/Profile/ProfilePage.tsx @@ -160,7 +160,6 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) { {user?.nip05 && } - {user?.pubkey && } {showBadges && } {showStatus && <>{musicStatus()}} @@ -347,6 +346,7 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
{username()} {bio()} + {user?.pubkey && }
); }