From 38baadb29dd71308ee18e030b2d0af6dbd6ebaef Mon Sep 17 00:00:00 2001 From: Base44 Gremlin Date: Sat, 21 Mar 2026 07:21:06 +0000 Subject: [PATCH] Remove X-App-Id header from SDK client The X-App-Id header was a legacy mechanism for passing app identity to the backend. App identity is now determined from URL path parameters in all API routes, making this header redundant. Part of base44-dev/gremlins#871 --- src/client.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index 8db67b7..d84a9fc 100644 --- a/src/client.ts +++ b/src/client.ts @@ -97,7 +97,6 @@ export function createClient(config: CreateClientConfig): Base44Client { const headers = { ...optionalHeaders, - "X-App-Id": String(appId), }; const functionHeaders = functionsVersion