auto-commit for 18ca60c1-6fdf-4650-ac9a-23fdffc515c5

This commit is contained in:
emergent-agent-e1
2025-11-08 16:33:08 +00:00
parent 52b7607962
commit 5e076bcd2a
@@ -24,8 +24,11 @@ export default function HumanVerificationScreen({ navigation }: any) {
setVerifying(true);
try {
// Get backend URL from environment
const backendUrl = process.env.EXPO_PUBLIC_BACKEND_URL || 'http://localhost:8001';
// Verify token with backend
const response = await fetch('http://localhost:8001/api/verify-turnstile', {
const response = await fetch(`${backendUrl}/api/verify-turnstile`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',