I had this issue, I resolved it by editing the following:
wp-includes/js/comment-reply/js
line 96 & line 120:
element.addEventListener( 'touchstart', clickEvent, { passive: false } );
element.addEventListener( 'click', clickEvent );
change to:
element.addEventListener( 'touchstart', clickEvent, { passive: true } );
element.addEventListener( 'click', clickEvent );
You’re not editing the .min file because that one is auto-generated.