From 976e0f0f04f99354683c8c0ca6980166d2745248 Mon Sep 17 00:00:00 2001 From: "me@jeffersonbledsoe.com" Date: Wed, 27 Mar 2024 17:14:09 +0000 Subject: [PATCH] Fix bad breakpoint... whoops! --- .../volto/formsupport/restapi/services/submit_form/field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collective/volto/formsupport/restapi/services/submit_form/field.py b/src/collective/volto/formsupport/restapi/services/submit_form/field.py index 7127d4aa..0034586c 100644 --- a/src/collective/volto/formsupport/restapi/services/submit_form/field.py +++ b/src/collective/volto/formsupport/restapi/services/submit_form/field.py @@ -96,7 +96,7 @@ def send_in_email(self): def validate(self): # Making sure we've got a validation that actually exists. if not self._value and not self.required: - breakpoint() + return available_validations = [ validation for validationId, validation in getValidations()