From c3941d90bfaa0fa8ad5ef9073c6df4b4ab7312e9 Mon Sep 17 00:00:00 2001 From: Andreas Dorner Date: Thu, 2 Jul 2026 20:00:17 +0200 Subject: [PATCH] fix: remove leftover console log from not-pattern validation --- libs/ngxtension/not-pattern/src/not-pattern.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/ngxtension/not-pattern/src/not-pattern.ts b/libs/ngxtension/not-pattern/src/not-pattern.ts index 6d37b3bd4..68eb5f1d1 100644 --- a/libs/ngxtension/not-pattern/src/not-pattern.ts +++ b/libs/ngxtension/not-pattern/src/not-pattern.ts @@ -47,7 +47,6 @@ export function notPattern(pattern: string | RegExp): ValidatorFn { return null; // don't validate empty values to allow optional controls } const value: string = control.value; - console.log('value', value, 'regex', regex); return regex.test(value) ? { notPattern: { disallowedPattern: regexStr, actualValue: value } } : null;