diff --git a/frontend/src/screens/HumanVerificationScreen.tsx b/frontend/src/screens/HumanVerificationScreen.tsx index ae4ffab5..1dfb21bb 100644 --- a/frontend/src/screens/HumanVerificationScreen.tsx +++ b/frontend/src/screens/HumanVerificationScreen.tsx @@ -15,8 +15,11 @@ const TURNSTILE_SITE_KEY = '1x00000000000000000000AA'; export default function HumanVerificationScreen({ navigation }: any) { const [loading, setLoading] = useState(true); const [verifying, setVerifying] = useState(false); + const [error, setError] = useState(null); const webViewRef = useRef(null); + console.log('HumanVerificationScreen mounted'); + const handleTurnstileToken = async (token: string) => { setVerifying(true);