diff --git a/src/components/onboarding/onboarding-wizard.tsx b/src/components/onboarding/onboarding-wizard.tsx index ce26d11..aa3ffcd 100644 --- a/src/components/onboarding/onboarding-wizard.tsx +++ b/src/components/onboarding/onboarding-wizard.tsx @@ -529,7 +529,7 @@ function StepGatewayLink({ isGateway, registration, onNext, onBack }: { const testConnection = async () => { setTesting(true) try { - const res = await fetch('/api/gateways/health') + const res = await fetch('/api/gateways/health', { method: 'POST' }) setHealthOk(res.ok) } catch { setHealthOk(false)