From 9184d002d319b2f67f4d5821af19a482810f719e Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 2 Jun 2026 09:39:11 -0700 Subject: [PATCH] update copy for sign in views (#238) * update copy for sign in views This disambiguates whether the view is for sign up or sign in. * format * escape character * format * update workflow names --- .../{pr-quality-gate.yml => pr-quality-gate-js.yml} | 4 ++-- js/desktop/src/features/auth/email-step.tsx | 7 +++++-- js/mobile/src/features/auth/SignInScreen.tsx | 5 +++-- 3 files changed, 10 insertions(+), 6 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 diff --git a/js/desktop/src/features/auth/email-step.tsx b/js/desktop/src/features/auth/email-step.tsx index 45be3b7..7ce685c 100644 --- a/js/desktop/src/features/auth/email-step.tsx +++ b/js/desktop/src/features/auth/email-step.tsx @@ -31,8 +31,11 @@ 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..313f3cd 100644 --- a/js/mobile/src/features/auth/SignInScreen.tsx +++ b/js/mobile/src/features/auth/SignInScreen.tsx @@ -60,9 +60,10 @@ 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.