diff --git a/src/components/modals/ReplyModal.jsx b/src/components/modals/ReplyModal.jsx index 15edc674..7a72c837 100755 --- a/src/components/modals/ReplyModal.jsx +++ b/src/components/modals/ReplyModal.jsx @@ -99,9 +99,8 @@ const ReplyModal = ({ isOpen, closeModal }) => { const onChallengeVerification = (challengeVerification) => { if (challengeVerification.challengeSuccess === true) { - console.log('challenge success'); - } - else if (challengeVerification.challengeSuccess === false) { + return; + } else if (challengeVerification.challengeSuccess === false) { setNewErrorMessage(`Challenge Failed, reason: ${challengeVerification.reason}. Errors: ${challengeVerification.errors}`); console.log('challenge failed', challengeVerification); }