From b1f0b4ad0379e890fd99e5a250f4283b7750ccfb Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Wed, 17 Jun 2026 19:20:50 +0530 Subject: [PATCH] chore: update leads api --- ui/src/components/lead-forms/onboardingServiceClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/lead-forms/onboardingServiceClient.ts b/ui/src/components/lead-forms/onboardingServiceClient.ts index 5ce8c9b2..a35fe1a8 100644 --- a/ui/src/components/lead-forms/onboardingServiceClient.ts +++ b/ui/src/components/lead-forms/onboardingServiceClient.ts @@ -7,7 +7,7 @@ // .env.example ships this commented out) → fall back to our cloud leads backend so we // still receive OSS form submissions. Override the env var to point elsewhere (or to a // local backend) to stop sending leads to us. -const BASE_URL = process.env.NEXT_PUBLIC_ONBOARDING_API_URL || "https://leads.dograh.com"; +const BASE_URL = process.env.NEXT_PUBLIC_ONBOARDING_API_URL || "https://api-leads.dograh.com"; // Bound every call so a slow/hung service can never freeze the UI. Best-effort: // failures are surfaced via console.error (Sentry breadcrumbs) but never thrown.