Fix prettier complaint
This commit is contained in:
parent
56595757a5
commit
9e2f9cd80b
|
@ -40,8 +40,10 @@ export function FeedCommentThread(props: {
|
||||||
}) {
|
}) {
|
||||||
const { contract, comments, bets, tips, smallAvatar, parentComment } = props
|
const { contract, comments, bets, tips, smallAvatar, parentComment } = props
|
||||||
const [showReply, setShowReply] = useState(false)
|
const [showReply, setShowReply] = useState(false)
|
||||||
const [replyToUser, setReplyToUser] =
|
const [replyToUser, setReplyToUser] = useState<{
|
||||||
useState<{ id: string; username: string }>()
|
id: string
|
||||||
|
username: string
|
||||||
|
}>()
|
||||||
const betsByUserId = groupBy(bets, (bet) => bet.userId)
|
const betsByUserId = groupBy(bets, (bet) => bet.userId)
|
||||||
const user = useUser()
|
const user = useUser()
|
||||||
const commentsList = comments.filter(
|
const commentsList = comments.filter(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user