diff --git a/web/components/follow-button.tsx b/web/components/follow-button.tsx index f2dd0d82..f2a67b9b 100644 --- a/web/components/follow-button.tsx +++ b/web/components/follow-button.tsx @@ -57,7 +57,7 @@ export function UserFollowButton(props: { userId: string; small?: boolean }) { const following = useFollows(currentUser?.id) const isFollowing = following?.includes(userId) - if (!currentUser) return null + if (!currentUser || currentUser.id === userId) return null return (