From b80d75a63ae5e7955c69203d977b4c96db0b4c5e Mon Sep 17 00:00:00 2001 From: Chuma McPhoy Date: Fri, 29 Nov 2024 12:18:24 +0100 Subject: [PATCH] fix(SW-1095): default to swedish country code if page in english --- components/TempDesignSystem/Form/Phone/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/TempDesignSystem/Form/Phone/index.tsx b/components/TempDesignSystem/Form/Phone/index.tsx index 8d2171770..cdd26af62 100644 --- a/components/TempDesignSystem/Form/Phone/index.tsx +++ b/components/TempDesignSystem/Form/Phone/index.tsx @@ -161,7 +161,7 @@ function getDefaultCountryFromLang(lang: Lang): LowerCaseCountryCode { fi: "fi", no: "no", de: "de", - en: "gb", + en: "se", // Default to Sweden for English } return countryMap[lang] || "se" }