From cdc7c880fa5fa4cdaf52bd7c0471cf8c817de2c5 Mon Sep 17 00:00:00 2001 From: benthecarman Date: Fri, 22 Mar 2024 16:08:05 -0500 Subject: [PATCH] Always pass along lnurl comment --- src/routes/Send.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/Send.tsx b/src/routes/Send.tsx index 0cf91bd..94dab36 100644 --- a/src/routes/Send.tsx +++ b/src/routes/Send.tsx @@ -509,13 +509,12 @@ export function Send() { visibility() !== "Not Available" && contact()?.npub ? contact()?.npub : undefined; - const comment = zapNpub ? whatForInput() : undefined; const payment = await state.mutiny_wallet?.lnurl_pay( lnurlp()!, amountSats(), zapNpub, // zap_npub tags, - comment, // comment + whatForInput(), // comment visibility() ); sentDetails.payment_hash = payment?.payment_hash;