Make comments with bet outcome but no answer outcome appear (#894)

This commit is contained in:
Marshall Polaris 2022-09-19 00:53:10 -07:00 committed by GitHub
parent b93af31d2f
commit bfe00595e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,10 @@ export function FreeResponseContractCommentsActivity(props: {
(answer) => -getOutcomeProbability(contract, answer.number.toString())
)
const commentsByUserId = groupBy(comments, (c) => c.userId)
const commentsByOutcome = groupBy(comments, (c) => c.answerOutcome ?? '_')
const commentsByOutcome = groupBy(
comments,
(c) => c.answerOutcome ?? c.betOutcome ?? '_'
)
return (
<>