From 80fbf682bc3176d7e8ee7ecb206843af467199ba Mon Sep 17 00:00:00 2001 From: BcOleks <122971078+BcOleks@users.noreply.github.com> Date: Tue, 5 Dec 2023 12:20:37 +0100 Subject: [PATCH] adding gibraltar to domestic countries (#67) --- src/invoice.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invoice.js b/src/invoice.js index 7fe82d5..8952fc8 100644 --- a/src/invoice.js +++ b/src/invoice.js @@ -316,7 +316,7 @@ const priceFormatters = { handlebars.registerHelper('formatPrice', (value, currency) => priceFormatters[currency].format(value)) -const domesticCountries = ['The United States of America', 'United Kingdom'] +const domesticCountries = ['The United States of America', 'United Kingdom', 'Gibraltar'] export const isDomestic = (vendorCountry, clientCountry) => vendorCountry === clientCountry ||