fix(docs): remove trailing comma from JSON response example in agent-builder-codes
Open
- Dominant language
- JavaScript
- Stars
- 337
- Forks
- 792
- Avg merge
- 17h 23m
- Merged PRs (30d)
- 49
Description
## Bug
The response example in `docs/ai-agents/setup/agent-builder-codes.mdx` contains a trailing comma which is invalid JSON.
**Current (invalid JSON):**
```json
{
"builderCode": "bc_a1b2c3d4",
"walletAddress": "0x...",
}
```
**Fix (valid JSON):**
```json
{
"builderCode": "bc_a1b2c3d4",
"walletAddress": "0x..."
}
```
**Verified:** The actual API response does not include a trailing comma.
**Affected file:** `docs/ai-agents/setup/agent-builder-codes.mdx` line 37
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.