From b8515c4598476a63d608e00ce1b5793b576a9ffb Mon Sep 17 00:00:00 2001 From: padreug Date: Thu, 18 Sep 2025 23:07:23 +0200 Subject: [PATCH] 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. --- src/modules/wallet/views/WalletPage.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/wallet/views/WalletPage.vue b/src/modules/wallet/views/WalletPage.vue index ef733d5..b285d14 100644 --- a/src/modules/wallet/views/WalletPage.vue +++ b/src/modules/wallet/views/WalletPage.vue @@ -148,6 +148,7 @@ function handleQRClick() { const encodedLNURL = encodeLNURL(firstPayLink.value.lnurl) copyToClipboard(encodedLNURL, 'qr-lnurl') } +} // QR Scanner functions function closeQRScanner() {