Skip to content

Commit 15d8332

Browse files
committed
button disabled color correction
1 parent 3d8df77 commit 15d8332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/auth/password.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default function PasswordScreen() {
116116
{loading ? (
117117
<ActivityIndicator color={colors.buttonText} />
118118
) : (
119-
<Text style={styles.buttonText}>{t('continue')}</Text>
119+
<Text style={[styles.buttonText, (!isValidPassword() || loading) && styles.buttonTextDisabled]}>{t('continue')}</Text>
120120
)}
121121
</TouchableOpacity>
122122

0 commit comments

Comments
 (0)