diff --git a/components/dashboard/PostCards.tsx b/components/dashboard/PostCards.tsx index a1794be..17ee5b3 100644 --- a/components/dashboard/PostCards.tsx +++ b/components/dashboard/PostCards.tsx @@ -102,6 +102,15 @@ const PostRow = memo(function PostRow({ post, selected, onClick }: PostRowProps) onClick?.() } + // Did this post actually get an AI score, or was it filtered as off-topic + // noise before any AI call? Trump posts mostly aren't crypto-related, so the + // entry filter / AI marks them relevant=false with confidence 0 and no + // reasoning. Showing "AI confidence 0%" + an empty bar for those is + // misleading — it reads as "AI looked and had zero confidence" when really + // "this was skipped as not crypto-relevant". Treat a post as AI-scored only + // when it has a real confidence or reasoning. + const aiScored = post.ai_confidence > 0 || !!post.ai_reasoning + return (