If you want to completely disable the WordPress core lazy load feature for your website then you can easily achieve that using this very simple code snippet.
//* Advanced Scripts Method to Add This Snippet */ /* Title: Disable WordPress Core Lazy Load Feature Type: PHP: Custom Code Location: Plugins Loaded Priority: 10 */ add_filter( 'wp_lazy_loading_enabled', '__return_false' );