You can remove the the lazy and fetch priority attributes by adding this to your functions.php
add_filter( 'wp_get_loading_optimization_attributes', function( $attributes ) {
// Remove the loading attribute to disable lazy loading
unset($attributes['loading']);
// Remove the fetchpriority attribute to disable high fetch priority
unset($attributes['fetchpriority']);
return $attributes;
});