Remove frontend table style

Remove frontend table style

add_action('advanced_woo_discount_rules_after_initialize', function () {
    if(!function_exists('remove_discount_rules_table_style_css')){
        function remove_discount_rules_table_style_css(){
            wp_dequeue_style( 'woo_discount_rules-customize-table-ui-css' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'remove_discount_rules_table_style_css', 11 );
});