Sorry, add
return $loc;
after
$loc['actions']['load_mobile_action'] = 'no-mob-ver';
Meanwhile you can go with
add_filter( 'yith_wcwl_is_wishlist_responsive', '__return_false' );
add_filter( 'yith_wcwl_localize_script', function($loc) {
$loc['actions']['load_mobile_action'] = 'no-mob-ver';
} );
add_filter( 'yith_wcwl_template_part_hierarchy', function($data) {
foreach($data as $k => $v) $data[$k] = str_replace('-mobile.php', '.php', $v);
return $data;
} );