From 3309ad56c8fcb29e1ff24fe4f82bd31a7d197811 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Thu, 6 Jul 2023 23:30:38 +0200 Subject: [PATCH] fix: smaller threshold for big zaps --- src/element/live-chat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/element/live-chat.tsx b/src/element/live-chat.tsx index 0e4c376..4505638 100644 --- a/src/element/live-chat.tsx +++ b/src/element/live-chat.tsx @@ -155,7 +155,7 @@ function ChatZap({ zap }: { zap: ParsedZap }) { if (!zap.valid) { return null; } - const isBig = zap.amount >= 1_000_000; + const isBig = zap.amount >= 10_000; return (