Add 'GB' to list of countries that are supported by taxjar since it no longer is part of EU

Closes https://github.com/Automattic/woocommerce-shipping-issues/issues/20
This commit is contained in:
David Stone 2021-11-08 13:02:00 +02:00
parent a6df312732
commit 10b534ac82
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class WC_Admin_Setup_Wizard {
$country_code = WC()->countries->get_base_country();
// https://developers.taxjar.com/api/reference/#countries .
$tax_supported_countries = array_merge(
array( 'US', 'CA', 'AU' ),
array( 'US', 'CA', 'AU', 'GB' ),
WC()->countries->get_european_union_countries()
);