remove console log

Co-authored-by: Jake McDermott <yo@jakemcdermott.me>
This commit is contained in:
Keith Grant 2020-10-20 11:18:40 -07:00 committed by GitHub
parent acd8a8dd3c
commit a9c01e891f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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