As html is added in title which you do not want, can you add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_form_field_before_output', function( $field, $where ){
if( 'message_title' === $field['key'] ){
$field['posted-value'] = strip_tags( $field['posted-value'] );
}
return $field;
},10, 2);
Let me know.