Remove options from auto add free product from Product Option by themehigh

Remove options from auto add free product from Product Option by ThemeHigh

add_filter('woocommerce_add_cart_item_data', function ($cart_item_data, $product_id = 0){
    if(isset($cart_item_data['wdr_free_product']) && $cart_item_data['wdr_free_product'] == "Free"){
        if(isset($cart_item_data['thwepo_options'])) {
            unset($cart_item_data['thwepo_options']);
        }
    }
    return $cart_item_data;
}, 11, 2);