From 4391bfb17650cbcc73d5d7289386578ffc2ed416 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 21 May 2026 10:43:42 -0700 Subject: [PATCH] fix(copilot): default SIM_AGENT_API_URL to www.copilot.sim.ai to avoid redirect path drop --- apps/sim/lib/copilot/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/lib/copilot/constants.ts b/apps/sim/lib/copilot/constants.ts index c8118313923..ff621d199ab 100644 --- a/apps/sim/lib/copilot/constants.ts +++ b/apps/sim/lib/copilot/constants.ts @@ -1,6 +1,6 @@ import { env } from '@/lib/core/config/env' -export const SIM_AGENT_API_URL_DEFAULT = 'https://copilot.sim.ai' +export const SIM_AGENT_API_URL_DEFAULT = 'https://www.copilot.sim.ai' export const SIM_AGENT_VERSION = '3.0.0' /** Resolved copilot backend URL — reads from env with fallback to default. */