From f00064732d34b04fb05bfc31fcbf3f520778ff46 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Sat, 19 Mar 2022 01:13:37 -0500 Subject: [PATCH] Only answers with less than 0.01% are filtered from feed. --- web/components/feed/activity-items.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)