
jQuery('body').on('update_checkout', function(){
let amount=jQuery('#shipping_method .woocommerce-Price-amount bdi').text();
console.log('rendered amount', amount);
if(amount)
jQuery('.fm-shipping-total-number').html(amount);
}
);