update copy for sign in views

This disambiguates whether the view is for sign up or sign in.
This commit is contained in:
Arjun Patel
2026-06-02 09:11:23 -07:00
parent 0439c51c2e
commit 58a80bd57d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -60,9 +60,9 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) {
return (
<View className="gap-5">
<View className="gap-1">
<Text className="text-foreground text-3xl font-semibold">Sign in</Text>
<Text className="text-foreground text-3xl font-semibold">Welcome</Text>
<Text className="text-muted-foreground text-base">
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.
</Text>
</View>