From f14a87c9b35d8b89e4777492e2eeb0a23c8668ce Mon Sep 17 00:00:00 2001 From: mantikoros Date: Thu, 17 Mar 2022 12:03:15 -0500 Subject: [PATCH] remove bio placeholder text again, preserve spacing --- web/components/user-page.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/web/components/user-page.tsx b/web/components/user-page.tsx index 3a6c3cc3..746a92d5 100644 --- a/web/components/user-page.tsx +++ b/web/components/user-page.tsx @@ -33,13 +33,12 @@ export function UserPage(props: { user: User; currentUser?: User }) { const { user, currentUser } = props const isCurrentUser = user.id === currentUser?.id const bannerUrl = user.bannerUrl ?? defaultBannerUrl(user.id) - const placeholderBio = `I... haven't gotten around to writing a bio yet 😛` return ( @@ -75,12 +74,16 @@ export function UserPage(props: { user: User; currentUser?: User }) { {user.name} @{user.username} - -
- -
- + {user.bio && ( + <> + +
+ +
+ + + )} {user.website && (