about summary refs log tree commit diff
diff options
context:
space:
mode:
authorflicknow <mrflicknow@gmail.com>2023-11-01 20:38:49 -0400
committerflicknow <mrflicknow@gmail.com>2023-11-01 20:55:06 -0400
commit5f135aa0218e7a1c1277dcb9f0b14ca28fae9b25 (patch)
tree53150d7d0b48ec8545c855b58bca239400aafbe8
parentf57a8cf8ba0cd10a54abf35d960d8fb90266fa6b (diff)
downloadvoidsky-5f135aa0218e7a1c1277dcb9f0b14ca28fae9b25.tar.zst
Make choose account form scrollable
-rw-r--r--src/view/com/auth/login/Login.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/com/auth/login/Login.tsx b/src/view/com/auth/login/Login.tsx
index fac923393..2e9926a56 100644
--- a/src/view/com/auth/login/Login.tsx
+++ b/src/view/com/auth/login/Login.tsx
@@ -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>
   )
 }