Make choose account form scrollable

zio/stable
flicknow 2023-11-01 20:38:49 -04:00
parent f57a8cf8ba
commit 5f135aa021
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>
)
}