From 47958c2b23d4dc892b53517841fc102d8922b6b0 Mon Sep 17 00:00:00 2001 From: codytseng Date: Thu, 4 Dec 2025 23:26:27 +0800 Subject: [PATCH] feat: update trust score thresholds --- src/components/TrustScoreBadge/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/TrustScoreBadge/index.tsx b/src/components/TrustScoreBadge/index.tsx index 647d4ef..88c03cc 100644 --- a/src/components/TrustScoreBadge/index.tsx +++ b/src/components/TrustScoreBadge/index.tsx @@ -50,9 +50,9 @@ export default function TrustScoreBadge({ if (loading || percentile === null) return null - // percentile < 50: likely spam (red alert) - // percentile < 75: suspicious (yellow warning) - if (percentile < 50) { + // percentile < 40: likely spam (red alert) + // percentile < 60: suspicious (yellow warning) + if (percentile < 40) { return (
@@ -60,7 +60,7 @@ export default function TrustScoreBadge({ ) } - if (percentile < 75) { + if (percentile < 60) { return (