Fix get_automated_tax_supported_countries doesn't include UK (https://github.com/woocommerce/woocommerce-admin/pull/8180)

* Add GB to automated tax supported countries list

* Add changelog
This commit is contained in:
Chi-Hsuan Huang 2022-01-18 18:31:46 +08:00 committed by GitHub
parent 3b8c6662e8
commit 18a4a467f8
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: Fix
Fix get_automated_tax_supported_countries doesn't include UK. #8180

View File

@ -155,7 +155,7 @@ class Tax extends Task {
public static function get_automated_support_countries() {
// 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()
);