fix: smaller threshold for big zaps

This commit is contained in:
Alejandro Gomez
2023-07-06 23:30:38 +02:00
parent d9a6def0cd
commit 3309ad56c8

View File

@ -155,7 +155,7 @@ function ChatZap({ zap }: { zap: ParsedZap }) {
if (!zap.valid) { if (!zap.valid) {
return null; return null;
} }
const isBig = zap.amount >= 1_000_000; const isBig = zap.amount >= 10_000;
return ( return (
<div className={`zap-container ${isBig ? "big-zap" : ""}`}> <div className={`zap-container ${isBig ? "big-zap" : ""}`}>