diff --git a/frontend/components/dashboard/PanelSections.tsx b/frontend/components/dashboard/PanelSections.tsx index fa77423c..96bad106 100644 --- a/frontend/components/dashboard/PanelSections.tsx +++ b/frontend/components/dashboard/PanelSections.tsx @@ -871,7 +871,6 @@ export function ProbabilityDistribution({ marketBucket, detail, ); - if (probability == null) continue; const key = marketBucket.slug || @@ -882,7 +881,7 @@ export function ProbabilityDistribution({ rows.push({ key, label: formatMarketBucketDisplayLabel(marketBucket, detail), - probability, + probability: probability ?? 0, marketBucket, }); }