diff options
Diffstat (limited to 'src/view/com/modals/ServerInput.tsx')
-rw-r--r-- | src/view/com/modals/ServerInput.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/modals/ServerInput.tsx b/src/view/com/modals/ServerInput.tsx index 884fb91e6..c8174f3cd 100644 --- a/src/view/com/modals/ServerInput.tsx +++ b/src/view/com/modals/ServerInput.tsx @@ -33,7 +33,7 @@ export function Component({ } return ( - <View style={s.flex1}> + <View style={s.flex1} testID="serverInputModal"> <Text style={[s.textCenter, s.bold, s.f18]}>Choose Service</Text> <BottomSheetScrollView style={styles.inner}> <View style={styles.group}> @@ -64,6 +64,7 @@ export function Component({ <Text style={styles.label}>Other service</Text> <View style={{flexDirection: 'row'}}> <BottomSheetTextInput + testID="customServerTextInput" style={styles.textInput} placeholder="e.g. https://bsky.app" placeholderTextColor={colors.gray4} @@ -74,6 +75,7 @@ export function Component({ onChangeText={setCustomUrl} /> <TouchableOpacity + testID="customServerSelectBtn" style={styles.textInputBtn} onPress={() => doSelect(customUrl)}> <FontAwesomeIcon |