From 3680aef62b7f5bec3d9d8adb86ac5c4ab041ac56 Mon Sep 17 00:00:00 2001 From: Thomas Klein Date: Mon, 22 Jul 2024 22:05:32 +0200 Subject: [PATCH] Add missing argument to reload customer data --- view/frontend/web/js/view/country-store-data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/frontend/web/js/view/country-store-data.js b/view/frontend/web/js/view/country-store-data.js index b88eac7..ed5fa47 100644 --- a/view/frontend/web/js/view/country-store-data.js +++ b/view/frontend/web/js/view/country-store-data.js @@ -23,7 +23,7 @@ define([ if (!this.isRefreshPending() && this.isInvalidated()) { customerData.set('country_store_data', {'reload': true}); - customerData.reload(['country_store_data']); + customerData.reload(['country_store_data'], false); } },