IO-3092 Minor mobile app bug fixes.

This commit is contained in:
Patrick Fic
2025-03-05 15:13:39 -08:00
parent b2869b9fac
commit 981012f20e
2 changed files with 13 additions and 4 deletions

View File

@@ -70,6 +70,8 @@ export function SignIn({ emailSignInStart, signingIn }) {
label={t("signin.fields.password")}
mode="outlined"
secureTextEntry={true}
autoCorrect={false}
autoCapitalize="none"
onChangeText={handleChange("password")}
onBlur={handleBlur("password")}
value={values.password}

View File

@@ -7,19 +7,26 @@
"developmentClient": true,
"channel": "test",
"distribution": "internal",
"ios": {}
"ios": {},
"autoIncrement": true
},
"development-simulator": {
"developmentClient": true,
"channel": "test",
"distribution": "internal",
"ios": { "simulator": true }
"ios": { "simulator": true },
"autoIncrement": true
},
"test": {
"channel": "test"
"channel": "test",
"android": {
"buildType": "apk"
},
"autoIncrement": true
},
"production": {
"channel": "production"
"channel": "production",
"autoIncrement": true
}
},
"submit": {