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 d19f6ac685
commit 95324c1260

View file

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