fix haptic feedback not happening on iOS (see https://github.com/facebook/react-native/issues/43388)

This commit is contained in:
ppc
2024-10-26 18:08:31 +01:00
parent 4038de583d
commit 85b900ea30
+1 -1
View File
@@ -183,7 +183,7 @@ export default function ServerCardIn({route, navigation}) {
return (
<ScrollView contentInsetAdjustmentBehavior="automatic"
contentContainerStyle={{...styles.container, paddingTop: connectionTestResult ? 0 : 10}}
refreshControl={<RefreshControl refreshing={serverRefreshing} tintColor={theme.colors.onSurface} onRefresh={performRefresh}/>}>
refreshControl={<RefreshControl refreshing={serverRefreshing} onRefresh={performRefresh}/>}>
<StatusAlert server={server} connectionEstablished={connectionTestResult}/>
<View style={styles.section}>
<Title style={styles.sectionTitle}>{gameName ? `Play ${gameName}` : "Selected Card"}</Title>