From b98dc60cd3ef7d5c3553e6efebf35337365d1988 Mon Sep 17 00:00:00 2001 From: JacobLinCool Date: Fri, 27 Dec 2024 09:24:15 +0800 Subject: [PATCH] fix: remove qr scan error notification (#134) --- src/lib/components/QrScanner.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/QrScanner.svelte b/src/lib/components/QrScanner.svelte index 12fa3dd..a86b8df 100644 --- a/src/lib/components/QrScanner.svelte +++ b/src/lib/components/QrScanner.svelte @@ -39,7 +39,7 @@ if ((err as unknown as Error).toString().includes('NotFoundException')) { return; } - notifications.error(`error during scanning: ${err}`); + // notifications.error(`error during scanning: ${err}`); } ); } catch (err) {