From a0d595c7df8f056921cd1ec017f62dcff2d2cba0 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 26 Sep 2022 15:00:01 -0500 Subject: [PATCH] CountryCodeDropdown: support +55, +351 --- app/soapbox/utils/phone.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/soapbox/utils/phone.ts b/app/soapbox/utils/phone.ts index 9cc175f5d..8fde39f12 100644 --- a/app/soapbox/utils/phone.ts +++ b/app/soapbox/utils/phone.ts @@ -1,7 +1,9 @@ /** List of supported E164 country codes. */ const COUNTRY_CODES = [ '1', + '351', '44', + '55', ] as const; /** Supported E164 country code. */