Fix handleQRClick function closure in WalletPage.vue

- Closed the handleQRClick function properly by adding a closing brace, ensuring correct function definition and preventing potential runtime errors.

This change enhances the code structure and maintains the integrity of the QR code handling functionality.
This commit is contained in:
padreug 2025-09-18 23:07:23 +02:00
parent 46a5403b74
commit b8515c4598

View file

@ -148,6 +148,7 @@ function handleQRClick() {
const encodedLNURL = encodeLNURL(firstPayLink.value.lnurl)
copyToClipboard(encodedLNURL, 'qr-lnurl')
}
}
// QR Scanner functions
function closeQRScanner() {