Fix subscription amount

This commit is contained in:
austinkelsay 2025-03-27 16:12:27 -05:00
parent c8e5e13840
commit 4c76cd0a3c
No known key found for this signature in database
GPG Key ID: 5A763922E5BA08EE

View File

@ -27,7 +27,7 @@ const SubscriptionPaymentButtons = ({ onSuccess, onError, onRecurringSubscriptio
const router = useRouter();
const lnAddress = process.env.NEXT_PUBLIC_LIGHTNING_ADDRESS;
const amount = 50;
const amount = 50000;
useEffect(() => {
initializeBitcoinConnect();
@ -92,7 +92,7 @@ const SubscriptionPaymentButtons = ({ onSuccess, onError, onRecurringSubscriptio
const initNwcOptions = {
name: "plebdevs.com",
requestMethods: ['pay_invoice'],
maxAmount: 500,
maxAmount: 50000,
editable: false,
budgetRenewal: 'monthly',
expiresAt: yearFromNow,