diff --git a/ViewModel/Installation.php b/ViewModel/Installation.php index 7866d471..b3028cc6 100644 --- a/ViewModel/Installation.php +++ b/ViewModel/Installation.php @@ -259,13 +259,19 @@ private function isAdmin() * * @return string */ - private function getRegion($storeId = null): string + private function getRegion($storeId = null): ?string { + return null; + /* + * Removed Nov. 2025 if the payload has a region (form the store) , it overrides the customer's region. + * This bypasses the location filtering. let the API determine the region based on the customer. + return (string)$this->scopeConfig->getValue( \Magento\Config\Model\Config\Backend\Admin\Custom::XML_PATH_GENERAL_COUNTRY_DEFAULT, ScopeInterface::SCOPE_STORES, $storeId ); + */ } /**