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 && (