diff --git a/src/app/auth/signup.tsx b/src/app/auth/signup.tsx
index bb4b9b21..1b0bf43e 100644
--- a/src/app/auth/signup.tsx
+++ b/src/app/auth/signup.tsx
@@ -91,10 +91,6 @@ function SignUpScreen() {
setLoading(false);
};
- if (session) {
- return ;
- }
-
return (
@@ -149,14 +145,18 @@ function SignUpScreen() {
style={styles.inputField}
placeholder="Enter Password"
autoCapitalize="none"
- secureTextEntry
+ secureTextEntry={true}
textContentType="password"
/>
Already have an account? Log In
-
+
);