From be813be2172ec8febdb52b8ca8206e560303af6b Mon Sep 17 00:00:00 2001 From: Max Chopart Date: Wed, 11 Dec 2024 14:51:38 +0100 Subject: [PATCH] [Upd] Removed unnecessary comments --- src/model/ValidatorFactory.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/model/ValidatorFactory.js b/src/model/ValidatorFactory.js index e0504ae1..693e6988 100644 --- a/src/model/ValidatorFactory.js +++ b/src/model/ValidatorFactory.js @@ -17,8 +17,6 @@ const createValidator = (question, intl) => { return () => { if (FormUtils.hasValidationLogic(question, intl)) { const answerValue = FormUtils.getAnswerValue(question); - // console.log(question); - // console.log(intl); return _validateAnswer(question, intl, answerValue, validators); } };