From 50447cf8d3972cb841944e01ac2a8a9b86f6e3c3 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Fri, 15 Jul 2022 08:48:35 -0600 Subject: [PATCH] Unused vars --- web/components/follow-list.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/components/follow-list.tsx b/web/components/follow-list.tsx index 391ce4d3..670eba09 100644 --- a/web/components/follow-list.tsx +++ b/web/components/follow-list.tsx @@ -2,11 +2,9 @@ import clsx from 'clsx' import { useFollows } from 'web/hooks/use-follows' import { useUser, useUserById } from 'web/hooks/use-user' import { follow, unfollow } from 'web/lib/firebase/users' -import { Avatar } from './avatar' import { FollowButton } from './follow-button' import { Col } from './layout/col' import { Row } from './layout/row' -import { UserLink } from './user-page' import { OnlineUserAvatar } from 'web/components/online-user-list' export function FollowList(props: { userIds: string[] }) {