diff --git a/api/app/Service/Forms/FormLogicConditionChecker.php b/api/app/Service/Forms/FormLogicConditionChecker.php index a366843d..b2d6035f 100644 --- a/api/app/Service/Forms/FormLogicConditionChecker.php +++ b/api/app/Service/Forms/FormLogicConditionChecker.php @@ -308,7 +308,6 @@ private function textConditionMet(array $propertyCondition, $value): bool return $this->checkLength($propertyCondition, $value, '<='); case 'matches_regex': try { - ray('matches_regex', $propertyCondition['value'], $value); return (bool) preg_match('/' . $propertyCondition['value'] . '/', $value); } catch (\Exception $e) { ray('matches_regex_error', $e);