revert(cli): keep HeyGen API traffic on stable prod (#3202)

* Revert "fix(cli): route HeyGen API calls through canary (#3201)"

This reverts commit 5545521556.

* fix(cli): remove remaining EF canary routes
This commit is contained in:
Miguel Ángel
2026-08-10 21:41:21 -04:00
committed by GitHub
parent 5545521556
commit 08934bfd55
10 changed files with 23 additions and 76 deletions
@@ -36,7 +36,6 @@ describeE2E("publish stable-URL round trip (live server)", () => {
async function fetchPublicProject(projectId: string): Promise<Record<string, unknown>> {
const response = await fetch(
`${getPublishApiBaseUrl()}/v1/hyperframes/projects/${projectId}/public`,
{ headers: { heygen_route: "canary" } },
);
expect(response.ok).toBe(true);
const payload = (await response.json()) as { data: Record<string, unknown> };