remove console log

This commit is contained in:
Bill Richardson 2026-05-06 10:40:09 -04:00
parent 47d00e22af
commit df0f41e560

View file

@ -20,7 +20,6 @@ export default {
* Identify the first error field and put focus on it
* get error names array
*/
console.log('Form submission prevented due to validation errors. Attempting to focus on the first invalid field.');
const errorNames = errors ? Object.keys(errors) : [];
const firstErrorEl = errorNames[0];
if (firstErrorEl) {