From 212af2105e0b47a624fc2efa6862479fb11271fc Mon Sep 17 00:00:00 2001 From: Chuma McPhoy Date: Thu, 24 Oct 2024 09:32:01 +0200 Subject: [PATCH] fix(SW-360): switch email translation --- components/Forms/Signup/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Forms/Signup/index.tsx b/components/Forms/Signup/index.tsx index 9f061f614..ad66f6282 100644 --- a/components/Forms/Signup/index.tsx +++ b/components/Forms/Signup/index.tsx @@ -32,7 +32,7 @@ export default function SignupForm({ link, subtitle, title }: SignUpFormProps) { const intl = useIntl() const lang = useLang() const country = intl.formatMessage({ id: "Country" }) - const email = `${intl.formatMessage({ id: "Email" })} ${intl.formatMessage({ id: "Address" }).toLowerCase()}` + const email = intl.formatMessage({ id: "Email address" }) const phoneNumber = intl.formatMessage({ id: "Phone number" }) const zipCode = intl.formatMessage({ id: "Zip code" })