Update CodeScanner.svelte

Removed quotes ("") from variable reference. I believe this is what is causing the test failure.
This commit is contained in:
Duarte Velez Grilo 2023-10-19 11:11:10 +01:00 committed by GitHub
parent cdbcfd13c5
commit 92e091818b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
let cameraEnabled let cameraEnabled
let cameraStarted = false let cameraStarted = false
let html5QrCode let html5QrCode
let cameraSetting = { facingMode: "{preferredCamera}" } let cameraSetting = { facingMode: {preferredCamera} }
let cameraConfig = { let cameraConfig = {
fps: 25, fps: 25,
qrbox: { width: 250, height: 250 }, qrbox: { width: 250, height: 250 },