From 4bf74cf48c5029d1d768c4f42c8b9375037aa327 Mon Sep 17 00:00:00 2001 From: Erdem Bayrakdar Date: Wed, 13 May 2026 14:02:26 +0300 Subject: [PATCH] fix(docs): remove trailing comma from JSON response example in agent-builder-codes The response example contained a trailing comma which is invalid JSON. Fixes #1313 --- docs/ai-agents/setup/agent-builder-codes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai-agents/setup/agent-builder-codes.mdx b/docs/ai-agents/setup/agent-builder-codes.mdx index 89ff1f0fa..336657d18 100644 --- a/docs/ai-agents/setup/agent-builder-codes.mdx +++ b/docs/ai-agents/setup/agent-builder-codes.mdx @@ -34,7 +34,7 @@ Response: ```json Response { "builderCode": "bc_a1b2c3d4", - "walletAddress": "0x...", + "walletAddress": "0x..." } ```