From 99190e648204b535b88d9dd39f3338c8f2fc44fa Mon Sep 17 00:00:00 2001 From: "Bc.Oleks" Date: Tue, 5 Dec 2023 12:14:01 +0100 Subject: [PATCH] adding gibraltar to domestic countries --- 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 ||