1
0
forked from Kieran/snort

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))
.filter(z => z.valid);
sortedZaps.sort((a, b) => b.amount - a.amount);
console.debug(sortedZaps);
return sortedZaps;
}, [related]);
const totalReactions = positive.length + negative.length + reposts.length + zaps.length;