Make comments with bet outcome but no answer outcome appear

This commit is contained in:
Marshall Polaris 2022-09-18 23:38:15 -07:00
parent a9e5020904
commit f7ae1a55ce

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 (
<>