From a956b98941a6d15d5a71343cec0fc9cf8458e0b2 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Fri, 6 Mar 2026 14:46:03 -0800 Subject: [PATCH] Stop auto-checking 'top choice' and 'interested' checkboxes Only auto-check confirm/agree/consent checkboxes. Co-Authored-By: Claude Opus 4.6 --- lib/form_filler.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/form_filler.mjs b/lib/form_filler.mjs index d721ebb..362cff9 100644 --- a/lib/form_filler.mjs +++ b/lib/form_filler.mjs @@ -722,7 +722,7 @@ Answer:`; for (const field of snap.checkboxes) { if (field.checked) continue; const ll = field.label.toLowerCase(); - if (ll.includes('top choice') || ll.includes('interested') || ll.includes('confirm') || ll.includes('agree') || ll.includes('consent')) { + if (ll.includes('confirm') || ll.includes('agree') || ll.includes('consent')) { const el = cbEls[field.index]; if (el) await el.check().catch(() => {}); }