From 05345984b35df9977a0a0ba1f21733098b8e34ab Mon Sep 17 00:00:00 2001 From: Muhammad Ahsan Ayaz <9844254+AhsanAyaz@users.noreply.github.com> Date: Fri, 19 Dec 2025 07:12:32 +0100 Subject: [PATCH] fix(samples): fix contacts app sample backend url --- samples/client/angular/projects/contact/src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/client/angular/projects/contact/src/server.ts b/samples/client/angular/projects/contact/src/server.ts index d1cab0c3..9d3fa772 100644 --- a/samples/client/angular/projects/contact/src/server.ts +++ b/samples/client/angular/projects/contact/src/server.ts @@ -122,7 +122,7 @@ async function fetchWithCustomHeader(url: string | URL | Request, init?: Request async function createOrGetClient() { // Create a client pointing to the agent's Agent Card URL. - client ??= await A2AClient.fromCardUrl('http://localhost:10002/.well-known/agent-card.json', { + client ??= await A2AClient.fromCardUrl('http://localhost:10003/.well-known/agent-card.json', { fetchImpl: fetchWithCustomHeader, });