auto-commit for a9df683a-d46f-45f6-833b-d89a300aa683

This commit is contained in:
emergent-agent-e1
2025-11-08 15:21:36 +00:00
parent b100c581f8
commit 4d7fa7fda7
@@ -146,10 +146,20 @@ export default function HumanVerificationScreen({ navigation }: any) {
ref={webViewRef}
source={{ html: turnstileHTML }}
onMessage={handleMessage}
onLoadEnd={() => setLoading(false)}
onLoadStart={() => console.log('WebView started loading')}
onLoadEnd={() => {
console.log('WebView finished loading');
setLoading(false);
}}
onError={(syntheticEvent) => {
const { nativeEvent } = syntheticEvent;
console.error('WebView error:', nativeEvent);
setError(`WebView Error: ${nativeEvent.description}`);
}}
style={styles.webview}
javaScriptEnabled={true}
domStorageEnabled={true}
originWhitelist={['*']}
/>
{loading && (