Stop auto-checking 'top choice' and 'interested' checkboxes

Only auto-check confirm/agree/consent checkboxes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 14:46:03 -08:00
parent 23eb5284fa
commit a956b98941

View File

@@ -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(() => {});
}