From 0ea6233ba42eea1db0572324ff6cd386597a60b3 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Wed, 16 Feb 2022 16:47:02 -0800 Subject: [PATCH] Update userpage SEO --- web/components/user-page.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/web/components/user-page.tsx b/web/components/user-page.tsx index 155bbd4c..b1a4d821 100644 --- a/web/components/user-page.tsx +++ b/web/components/user-page.tsx @@ -31,20 +31,15 @@ export function UserLink(props: { export function UserPage(props: { user: User; currentUser?: User }) { const { user, currentUser } = props - const isCurrentUser = user.id === currentUser?.id - - const possesive = isCurrentUser ? 'Your ' : `${user.name}'s ` - const bannerUrl = user.bannerUrl ?? defaultBannerUrl(user.id) - const placeholderBio = `I... haven't gotten around to writing a bio yet 😛` return (