From 401043bc8405c1609228729a3bb35e2ede80c212 Mon Sep 17 00:00:00 2001 From: HusseinAdeiza Date: Sun, 26 Apr 2026 17:50:50 +0100 Subject: [PATCH] fix(docs): remove trailing comma from JSON response example Fixes #1313 The JSON response example in agent-builder-codes.mdx contained a trailing comma after the last property, which is invalid JSON. This fix removes the comma to ensure the example shows valid JSON. --- 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..." } ```