From 55faeb07ee0ae5c4815f87340c414cfe3b945b18 Mon Sep 17 00:00:00 2001 From: Siddhant Kulkarni <124372481+siddhant-k08@users.noreply.github.com> Date: Tue, 2 Dec 2025 10:53:43 -0300 Subject: [PATCH] fix: typo in `index.ts` file A typographical error in the file was stopping the agent from run, removing it fixes the issue. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2a0c230..da8f88f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ app.use( origin: '*', // Allow any origin for development; restrict this in production allowMethods: ['POST', 'GET', 'OPTIONS'], allowHeaders: ['Content-Type'], - exposeHeaders: ['X-Session-Id'],x + exposeHeaders: ['X-Session-Id'], maxAge: 86400, // 24 hours }), );