From 58a80bd57d0a8c55272c3116aec0ad8300c52ef0 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:11:23 -0700 Subject: [PATCH 1/5] update copy for sign in views This disambiguates whether the view is for sign up or sign in. --- js/desktop/src/features/auth/email-step.tsx | 4 ++-- js/mobile/src/features/auth/SignInScreen.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/desktop/src/features/auth/email-step.tsx b/js/desktop/src/features/auth/email-step.tsx index 45be3b7..a7c7a5d 100644 --- a/js/desktop/src/features/auth/email-step.tsx +++ b/js/desktop/src/features/auth/email-step.tsx @@ -31,8 +31,8 @@ export function EmailStep({ onCodeSent }: EmailStepProps) { return (
-

Sign in

- Enter your email to receive a sign-in code. +

Welcome

+ Enter your email to sign in or create an account. We'll send a code to verify it.
diff --git a/js/mobile/src/features/auth/SignInScreen.tsx b/js/mobile/src/features/auth/SignInScreen.tsx index 0409869..16961a2 100644 --- a/js/mobile/src/features/auth/SignInScreen.tsx +++ b/js/mobile/src/features/auth/SignInScreen.tsx @@ -60,9 +60,9 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) { return ( - Sign in + Welcome - Enter your email to receive a sign-in code. + Enter your email to sign in or create an account. We'll send a code to verify it. -- 2.54.0 From f2684274443762f0cdeacf39b340744277fa7b80 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:21:19 -0700 Subject: [PATCH 2/5] format --- js/desktop/src/features/auth/email-step.tsx | 5 ++++- js/mobile/src/features/auth/SignInScreen.tsx | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/js/desktop/src/features/auth/email-step.tsx b/js/desktop/src/features/auth/email-step.tsx index a7c7a5d..7ce685c 100644 --- a/js/desktop/src/features/auth/email-step.tsx +++ b/js/desktop/src/features/auth/email-step.tsx @@ -32,7 +32,10 @@ export function EmailStep({ onCodeSent }: EmailStepProps) {

Welcome

- Enter your email to sign in or create an account. We'll send a code to verify it. + + Enter your email to sign in or create an account. We'll send a code to + verify it. +
diff --git a/js/mobile/src/features/auth/SignInScreen.tsx b/js/mobile/src/features/auth/SignInScreen.tsx index 16961a2..f481d0f 100644 --- a/js/mobile/src/features/auth/SignInScreen.tsx +++ b/js/mobile/src/features/auth/SignInScreen.tsx @@ -62,7 +62,8 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) { Welcome - Enter your email to sign in or create an account. We'll send a code to verify it. + Enter your email to sign in or create an account. We'll send a code to + verify it. -- 2.54.0 From 8c7dc41eda912011550735e376a39c7c735eebc7 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:26:05 -0700 Subject: [PATCH 3/5] escape character --- js/mobile/src/features/auth/SignInScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mobile/src/features/auth/SignInScreen.tsx b/js/mobile/src/features/auth/SignInScreen.tsx index f481d0f..992660f 100644 --- a/js/mobile/src/features/auth/SignInScreen.tsx +++ b/js/mobile/src/features/auth/SignInScreen.tsx @@ -62,7 +62,7 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) { Welcome - Enter your email to sign in or create an account. We'll send a code to + Enter your email to sign in or create an account. We'll send a code to verify it. -- 2.54.0 From 19554c65e5fb11527372a26fb282a31f2a16b836 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:33:48 -0700 Subject: [PATCH 4/5] format --- js/mobile/src/features/auth/SignInScreen.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/mobile/src/features/auth/SignInScreen.tsx b/js/mobile/src/features/auth/SignInScreen.tsx index 992660f..313f3cd 100644 --- a/js/mobile/src/features/auth/SignInScreen.tsx +++ b/js/mobile/src/features/auth/SignInScreen.tsx @@ -62,8 +62,8 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) { Welcome - Enter your email to sign in or create an account. We'll send a code to - verify it. + Enter your email to sign in or create an account. We'll send a + code to verify it. -- 2.54.0 From 5590b3715deeeb0b077f66864b7aca2b5ff1f745 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:34:28 -0700 Subject: [PATCH 5/5] update workflow names --- .../workflows/{pr-quality-gate.yml => pr-quality-gate-js.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{pr-quality-gate.yml => pr-quality-gate-js.yml} (95%) diff --git a/.github/workflows/pr-quality-gate.yml b/.github/workflows/pr-quality-gate-js.yml similarity index 95% rename from .github/workflows/pr-quality-gate.yml rename to .github/workflows/pr-quality-gate-js.yml index a7f7778..217c4f9 100644 --- a/.github/workflows/pr-quality-gate.yml +++ b/.github/workflows/pr-quality-gate-js.yml @@ -34,7 +34,7 @@ jobs: - name: Run Code Linter run: yarn lint - - name: Run Unit Tests + - name: Run Format Check run: yarn format:check desktop: @@ -62,7 +62,7 @@ jobs: - name: Run Code Linter run: yarn lint - - name: Run Unit Tests + - name: Run Format Check run: yarn format:check -- 2.54.0