From ca9b56c5f1365a1d1bdc345ea8bc1cad8c19c512 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Thu, 13 Mar 2025 11:56:19 -0500 Subject: [PATCH] Fix some text boxes --- components/auth/Auth.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/auth/Auth.tsx b/components/auth/Auth.tsx index f581e72..824719a 100644 --- a/components/auth/Auth.tsx +++ b/components/auth/Auth.tsx @@ -85,6 +85,8 @@ const Auth = () => { fontSize={24} onChangeText={(text) => setFullName(text)} value={full_name} + secureTextEntry={false} + autoCapitalize='words' placeholder='Full Name' /> @@ -95,6 +97,8 @@ const Auth = () => { fontSize={24} onChangeText={(text) => setEmail(text)} value={email} + secureTextEntry={false} + autoCapitalize='none' placeholder='email@address.com' />