Merge branch 'make-choose-account-scrollable' of https://github.com/flicknow/social-app into flicknow-make-choose-account-scrollable

zio/stable
Paul Frazee 2023-11-02 09:34:49 -07:00
commit 4e5a99d4d3
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ import {
ActivityIndicator,
Keyboard,
KeyboardAvoidingView,
ScrollView,
StyleSheet,
TextInput,
TouchableOpacity,
@ -202,7 +203,7 @@ const ChooseAccountForm = ({
}
return (
<View testID="chooseAccountForm">
<ScrollView testID="chooseAccountForm">
<Text
type="2xl-medium"
style={[pal.text, styles.groupLabel, s.mt5, s.mb10]}>
@ -267,7 +268,7 @@ const ChooseAccountForm = ({
<View style={s.flex1} />
{isProcessing && <ActivityIndicator />}
</View>
</View>
</ScrollView>
)
}