chore: remove spammy log message

This commit is contained in:
Kieran 2023-04-05 18:12:37 +01:00
parent 87165cf0d6
commit 6195325200
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -117,7 +117,6 @@ export default function Note(props: NoteProps) {
.map(a => parseZap(a, ev)) .map(a => parseZap(a, ev))
.filter(z => z.valid); .filter(z => z.valid);
sortedZaps.sort((a, b) => b.amount - a.amount); sortedZaps.sort((a, b) => b.amount - a.amount);
console.debug(sortedZaps);
return sortedZaps; return sortedZaps;
}, [related]); }, [related]);
const totalReactions = positive.length + negative.length + reposts.length + zaps.length; const totalReactions = positive.length + negative.length + reposts.length + zaps.length;