Hi Daniel,
You can use this filter hook rwmb_frontend_dashboard_delete_action
to remove the delete button in the frontend dashboard. For example:
add_filter( 'rwmb_frontend_dashboard_delete_action', function( $delete_action, $post_id ) {
$delete_action = false;
return $delete_action;
}, 10, 2 );
Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboard-hooks