Zend certified PHP/Magento developer

Show minicart in both header and footer magento 2

I’m trying to show minicart in both header and footer. I have added a new phtml in footer layout and added below code.

<?php  echo $this->getLayout()
          ->createBlock('MagentoCheckoutBlockCartSidebar')
          ->setTemplate('Magento_Checkout::cart/minicart-footer.phtml')
          ->toHtml(); ?>

Now the minicart is showing in footer too but when add to cart is triggered the product is added to the cart and message is shown but the loader in minicart is showing until I load the page manually like below.

enter image description here