diff --git a/public/app.js b/public/app.js index 8893b12..478f4de 100644 --- a/public/app.js +++ b/public/app.js @@ -392,8 +392,8 @@ document.getElementById('btn-scan').addEventListener('click', runWizard); // ── Settings: Save ── document.getElementById('btn-save').addEventListener('click', async () => { const status = document.getElementById('settings-status'); - // Collect camera data from DOM. - const cards = document.querySelectorAll('.camera-card'); + // Collect camera data from DOM (skip the auth card). + const cards = document.querySelectorAll('.camera-card[data-id]'); const updatedCameras = []; cards.forEach(card => { const c = {};