Fix prettier complaint

This commit is contained in:
Marshall Polaris 2022-08-30 01:39:41 -07:00
parent 56595757a5
commit 9e2f9cd80b

View File

@ -40,8 +40,10 @@ export function FeedCommentThread(props: {
}) {
const { contract, comments, bets, tips, smallAvatar, parentComment } = props
const [showReply, setShowReply] = useState(false)
const [replyToUser, setReplyToUser] =
useState<{ id: string; username: string }>()
const [replyToUser, setReplyToUser] = useState<{
id: string
username: string
}>()
const betsByUserId = groupBy(bets, (bet) => bet.userId)
const user = useUser()
const commentsList = comments.filter(