From c9ebb642ec4530383546a83c7c6150ca0a303fd1 Mon Sep 17 00:00:00 2001 From: benthecarman Date: Mon, 25 Mar 2024 15:56:11 -0500 Subject: [PATCH] Fix anonymous zaps --- src/routes/Send.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/Send.tsx b/src/routes/Send.tsx index e72b3ced..0590163e 100644 --- a/src/routes/Send.tsx +++ b/src/routes/Send.tsx @@ -515,7 +515,8 @@ export function Send() { amountSats(), zapNpub, // zap_npub tags, - comment // comment + comment, // comment + zapNpub ? "Anonymous" : undefined ); sentDetails.payment_hash = payment?.payment_hash;