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`);