FIX: lnurl-withdrawal bug when it says 'Maximum amount is X sats'

This commit is contained in:
Overtorment 2022-03-22 15:19:27 +00:00
parent 94e6ad8b84
commit 1c6c62336b

View file

@ -165,7 +165,7 @@ const LNDCreateInvoice = () => {
if (lnurlParams) {
const { min, max } = lnurlParams;
if (invoiceAmount < min || invoiceAmount > min) {
if (invoiceAmount < min || invoiceAmount > max) {
let text;
if (invoiceAmount < min) {
text =