From 3009c6cc018190acaa2c1daaf74dc38004264992 Mon Sep 17 00:00:00 2001 From: mantikoros Date: Wed, 16 Mar 2022 23:41:47 -0500 Subject: [PATCH] user page: remove bio placeholder text --- web/components/user-page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/components/user-page.tsx b/web/components/user-page.tsx index 3a6c3cc3..eed2dae6 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,13 @@ export function UserPage(props: { user: User; currentUser?: User }) { {user.name} @{user.username} - -
- -
- + {user.bio && ( +
+ + +
+ )} {user.website && (