Open DanReyLop opened 6 years ago
Ran into this today.
TaxJar does support Puerto Rico but not others such as Virgin Islands and Guam: https://support.taxjar.com/article/990-do-you-provide-support-for-reporting-filing-in-puerto-rico
The workaround I came up with was to remove Puerto Rico as a country and add it as a state, then it worked!
This snippet did the trick.
We frequently use
if ( country === "US" )
or similar to decide if the user can benefit of a feature. For example, here to show the "TaxJar" option, here to show Stripe. If those services work in the US territories (such as Puerto Rico, Virgin Islands, etc), we're potentially excluding many users. We need to review all the places in the code we're hardcoding'US'
, and see if we can include any or all the US territories there.