From f9e8d700d9296c1f6373d441b820f6871e839f4d Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Thu, 22 May 2025 11:45:47 +0200 Subject: [PATCH 1/4] fix(consent): use Log in and Register verbs correctly --- apps/consent/app/login/page.tsx | 2 +- apps/consent/components/phone-auth/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/consent/app/login/page.tsx b/apps/consent/app/login/page.tsx index a842ee0328..188b6b7137 100644 --- a/apps/consent/app/login/page.tsx +++ b/apps/consent/app/login/page.tsx @@ -55,7 +55,7 @@ const Login = async ({ searchParams }: { searchParams: LoginProps }) => { - Login In with Blink + Log in with Blink Enter your registered email to log in to this application. diff --git a/apps/consent/components/phone-auth/index.tsx b/apps/consent/components/phone-auth/index.tsx index 53b3f6cae4..7efd0729c4 100644 --- a/apps/consent/components/phone-auth/index.tsx +++ b/apps/consent/components/phone-auth/index.tsx @@ -14,7 +14,7 @@ import SubHeading from "@/components/sub-heading" interface PhoneAuth { login_challenge: string - authAction: "Register" | "Login" + authAction: "Register" | "Log in" } const PhoneAuth = async ({ login_challenge, authAction }: PhoneAuth) => { @@ -50,7 +50,7 @@ const PhoneAuth = async ({ login_challenge, authAction }: PhoneAuth) => { - {authAction} In with Blink + {authAction} with Blink {subHeadingMessage} Date: Thu, 22 May 2025 11:52:12 +0200 Subject: [PATCH 2/4] chore(consent): correct space and capitalization --- apps/consent/components/login-link.tsx | 2 +- apps/consent/components/phone-auth/phone-auth-form.tsx | 2 +- apps/consent/components/register-link.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/consent/components/login-link.tsx b/apps/consent/components/login-link.tsx index ac7cf3bb31..d9dc9a97cb 100644 --- a/apps/consent/components/login-link.tsx +++ b/apps/consent/components/login-link.tsx @@ -13,7 +13,7 @@ const LoginLink: React.FC = ({ href }) => {

Already have an Account?{" "} - Login Here. + Log in here.

diff --git a/apps/consent/components/phone-auth/phone-auth-form.tsx b/apps/consent/components/phone-auth/phone-auth-form.tsx index 0df95d53e6..7c6bdde1c3 100644 --- a/apps/consent/components/phone-auth/phone-auth-form.tsx +++ b/apps/consent/components/phone-auth/phone-auth-form.tsx @@ -130,7 +130,7 @@ const PhoneAuthForm: React.FC = ({ data-testid="phone_number_input" value={phoneNumber} required - placeholder="Phone Number" + placeholder="Phone number" id="phone" name="phone" onChange={handlePhoneNumberChange} diff --git a/apps/consent/components/register-link.tsx b/apps/consent/components/register-link.tsx index 2a638a2621..bfc2619b2e 100644 --- a/apps/consent/components/register-link.tsx +++ b/apps/consent/components/register-link.tsx @@ -13,7 +13,7 @@ const RegisterLink: React.FC = ({ href }) => {

Don't have an Account?{" "} - Register Here. + Register here.

From 1785c599d1d712f283fffc1d3cff8c51c32e669b Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Mon, 27 Oct 2025 16:45:08 +0100 Subject: [PATCH 3/4] fix: type issue for Login --- apps/consent/app/login/phone/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/consent/app/login/phone/page.tsx b/apps/consent/app/login/phone/page.tsx index 4d447a18da..81fc0ffe7d 100644 --- a/apps/consent/app/login/phone/page.tsx +++ b/apps/consent/app/login/phone/page.tsx @@ -8,7 +8,7 @@ interface LoginProps { const Login = async ({ searchParams }: { searchParams: LoginProps }) => { const { login_challenge } = searchParams - const authAction = "Login" + const authAction = "Log in" return } export default Login From 625fba4bdf28133aaa749993ae0583c65e0e4c28 Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Mon, 27 Oct 2025 17:04:39 +0100 Subject: [PATCH 4/4] fix: type issue for Login in phone-auth-form --- apps/consent/components/phone-auth/phone-auth-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/consent/components/phone-auth/phone-auth-form.tsx b/apps/consent/components/phone-auth/phone-auth-form.tsx index 7c6bdde1c3..84b1d19c70 100644 --- a/apps/consent/components/phone-auth/phone-auth-form.tsx +++ b/apps/consent/components/phone-auth/phone-auth-form.tsx @@ -37,7 +37,7 @@ import { GetCaptchaChallengeResponse } from "@/app/types/phone-auth.types" import { SupportedCountry } from "@/app/graphql/queries/get-supported-countries" interface AuthFormProps { - authAction: "Register" | "Login" + authAction: "Register" | "Log in" login_challenge: string countries: Array }