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' />