Bluesky app fork with some witchin' additions 💫

scrollview persist taps, autoFocus code

+3 -1
+2 -1
src/screens/Login/FormContainer.tsx
··· 29 29 return ( 30 30 <ScrollView 31 31 testID={testID} 32 - style={[styles.maxHeight, contentContainerStyle]}> 32 + style={[styles.maxHeight, contentContainerStyle]} 33 + keyboardShouldPersistTaps="handled"> 33 34 <View 34 35 style={[a.gap_lg, a.flex_1, !gtMobile && [a.px_lg, a.pt_md], style]}> 35 36 {title && !gtMobile && (
+1
src/screens/Login/SetNewPasswordForm.tsx
··· 113 113 testID="resetCodeInput" 114 114 label={_(msg`Looks like XXXXX-XXXXX`)} 115 115 autoCapitalize="none" 116 + autoFocus={true} 116 117 autoCorrect={false} 117 118 autoComplete="off" 118 119 value={resetCode}