From 4e83aa14316e31f81a36e29a873d85a43e735924 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Wed, 8 Jun 2022 14:42:23 -0500 Subject: [PATCH] Put back edit following button --- web/components/following-button.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web/components/following-button.tsx b/web/components/following-button.tsx index 7c43c414..f402f3d0 100644 --- a/web/components/following-button.tsx +++ b/web/components/following-button.tsx @@ -1,3 +1,4 @@ +import clsx from 'clsx' import { PencilIcon } from '@heroicons/react/outline' import { User } from 'common/user' import { useEffect, useState } from 'react' @@ -42,7 +43,13 @@ export function EditFollowingButton(props: { user: User; className?: string }) { const followerIds = useFollowers(user.id) return ( - setIsOpen(true)}> +
setIsOpen(true)} + > Following - +
) }