--- a/vendor/webkul/seller-price-comparision/view/frontend/templates/default.phtml
+++ b/vendor/webkul/seller-price-comparision/view/frontend/templates/default.phtml	(date 1639260784277)
@@ -11,9 +11,19 @@
 ?>
 <script>
     require([
+        'jquery',
         'Magento_Customer/js/customer-data'
-    ], function (customerData) {
+    ], function ($, customerData) {
         var sections = ['cart'];
+        var storage = $.initNamespaceStorage('mage-cache-storage').localStorage;
+        var sectionData;
+
+        sectionData = storage.get('customer');
+
+        if(typeof sectionData === 'undefined'){
+            sections.push('customer');
+        }
+
         customerData.invalidate(sections);
     });
-</script>
\ No newline at end of file
+</script>
