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
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -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 (
<div className={`zap-container ${isBig ? "big-zap" : ""}`}>