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 (