aboutsummaryrefslogtreecommitdiff
path: root/src/components/common
diff options
context:
space:
mode:
authorJustin Shillingford <jgs272@cornell.edu>2020-06-30 10:49:50 -0400
committerJustin Shillingford <jgs272@cornell.edu>2020-06-30 10:49:50 -0400
commit81d076c5fae1bedb564d3ec3733431dec848bf56 (patch)
tree8350e6177b7786fc9f401cc95ea9cdcc1d594247 /src/components/common
parenta484a53d729bce38adeb521e862518ea0f0044ff (diff)
Made registration start after Get Started button
Diffstat (limited to 'src/components/common')
-rw-r--r--src/components/common/LoginInput.tsx4
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;