From c07e5e04b07ba7b7418d4645dac6bb138ef5b97d Mon Sep 17 00:00:00 2001 From: Erdem Bayrakdar Date: Tue, 12 May 2026 00:49:23 +0300 Subject: [PATCH] fix(docs): remove .mdx extension from signInWithEthereum link in wallet_connect reference The link on line 193 incorrectly included a .mdx extension which returned 404. Fixes #1311 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 +- .../reference/core/provider-rpc-methods/wallet_connect.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..." } ``` diff --git a/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx b/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx index cbdcd9b94..ff07789a9 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx @@ -190,7 +190,7 @@ When using the `signInWithEthereum` capability, always generate a fresh, unique ## Usage with Capabilities -You can use the `wallet_connect` with the [`signInWithEthereum`](/base-account/reference/core/capabilities/signInWithEthereum.mdx) capability to authenticate the user. +You can use the `wallet_connect` with the [`signInWithEthereum`](/base-account/reference/core/capabilities/signInWithEthereum) capability to authenticate the user. import PolicyBanner from "/snippets/PolicyBanner.mdx";