diff --git a/packages/app/src/Element/CashuNuts.tsx b/packages/app/src/Element/CashuNuts.tsx index 4fc0cc97..0f2a6130 100644 --- a/packages/app/src/Element/CashuNuts.tsx +++ b/packages/app/src/Element/CashuNuts.tsx @@ -16,7 +16,9 @@ export default function CashuNuts({ token }: { token: string }) { async function redeemToken(e: React.MouseEvent, token: string) { e.stopPropagation(); const lnurl = profile?.lud16 ?? ""; - const url = `https://redeem.cashu.me?token=${encodeURIComponent(token)}&lightning=${encodeURIComponent(lnurl)}`; + const url = `https://redeem.cashu.me?token=${encodeURIComponent(token)}&lightning=${encodeURIComponent( + lnurl + )}&autopay=yes`; window.open(url, "_blank"); }