From 29377f1467caf2e44ce2e863b8badf3e21d90714 Mon Sep 17 00:00:00 2001 From: kajko Date: Sun, 26 Jul 2026 16:30:50 +0200 Subject: [PATCH] fix(docs): drop .mdx suffix from signInWithEthereum link The link in the "Usage with Capabilities" section pointed at /base-account/reference/core/capabilities/signInWithEthereum.mdx, which 404s on the live site. Every other internal link across the repo (415 of them, including two others on the same target page, capabilities/overview.mdx) omits the .mdx suffix -- this was the only one that had it. Closes #685 --- .../reference/core/provider-rpc-methods/wallet_connect.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";