diff options
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/LoginInput.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/common/LoginInput.tsx b/src/components/common/LoginInput.tsx index 43c31e2b..c82682d7 100644 --- a/src/components/common/LoginInput.tsx +++ b/src/components/common/LoginInput.tsx @@ -54,7 +54,7 @@ const LoginInput = (props: LoginInputProps) => { secureTextEntry={ props.isUsername ? false : props.isPassword ? true : false } - // focus={props.isUsername ? undefined : props.focusPasswordInput} + // ref={props.ref} /> {!props.isValid && ( <Text style={styles.invalidCredentials}>{props.validationWarning}</Text> @@ -88,7 +88,7 @@ interface LoginInputProps { isPassword?: boolean; onChangeText: (input: string) => void; onSubmitEditing?: () => void; - // ref: PropTypes.any, + // ref?: string; focusPasswordInput?: boolean; isValid?: boolean; validationWarning?: string; |