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:
@@ -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(() => {});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user