Cart discount not applied in minicart until moves to cart page

Ensure cart discounts apply immediately in the mini cart before moving to the cart page.

add_action('woocommerce_before_mini_cart', function (){
    if (!WC()->cart->is_empty()){
        WC()->cart->calculate_totals();
    }
});