Until the plugin is updated, you may want to add the following if you don’t use the “Add Form” TinyMCE button:
function your_prefix_remove_nf_add_form( $instance ) {
remove_filter( 'media_buttons_context', array( $instance->add_form_modal, 'insert_form_tinymce_buttons' ) );
}
add_action( 'nf_admin_init', 'your_prefix_remove_nf_add_form' );
Good luck!