diff --git a/web/components/feed/activity-items.ts b/web/components/feed/activity-items.ts index dfbed0f1..b2850f73 100644 --- a/web/components/feed/activity-items.ts +++ b/web/components/feed/activity-items.ts @@ -186,7 +186,7 @@ function getAnswerGroups( const { sortByProb, abbreviated } = options let outcomes = _.uniq(bets.map((bet) => bet.outcome)).filter( - (outcome) => getOutcomeProbability(contract, outcome) > 0.01 + (outcome) => getOutcomeProbability(contract, outcome) > 0.0001 ) if (abbreviated) { const lastComment = _.last(comments)