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 - +
) }