From a9c01e891fed78ea5ceaf4440a12478691b10bf6 Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Tue, 20 Oct 2020 11:18:40 -0700 Subject: [PATCH] remove console log Co-authored-by: Jake McDermott --- awx/ui_next/src/util/validators.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/ui_next/src/util/validators.jsx b/awx/ui_next/src/util/validators.jsx index c4475b24a6..0dfbe77fcf 100644 --- a/awx/ui_next/src/util/validators.jsx +++ b/awx/ui_next/src/util/validators.jsx @@ -68,7 +68,6 @@ export function noWhiteSpace(i18n) { export function integer(i18n) { return value => { - console.log(value); const str = String(value); if (/[^0-9]/.test(str)) { return i18n._(t`This field must be an integer`);