From 2a15df8f0e00112ff126382b18f7fb0261af914b Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Mon, 26 Jan 2026 09:55:28 +1100 Subject: [PATCH 1/3] fix: isolate wagmi state between mipd and non-mipd pages Amp-Thread-ID: https://ampcode.com/threads/T-019bf753-ca18-7394-9458-f3888dab3880 Co-authored-by: Amp --- src/components/Providers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Providers.tsx b/src/components/Providers.tsx index c58f489f..561859ad 100644 --- a/src/components/Providers.tsx +++ b/src/components/Providers.tsx @@ -28,7 +28,7 @@ export default function Providers({ mipd?: boolean }) { return ( - + {children} From 54a44c5d9b5ec011003fa0bb220221f45ce885a7 Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:03:00 +1100 Subject: [PATCH 2/3] fix: explicitly disable mipd for non-mipd pages Amp-Thread-ID: https://ampcode.com/threads/T-019bf753-ca18-7394-9458-f3888dab3880 Co-authored-by: Amp --- src/components/Providers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Providers.tsx b/src/components/Providers.tsx index 561859ad..c58f489f 100644 --- a/src/components/Providers.tsx +++ b/src/components/Providers.tsx @@ -28,7 +28,7 @@ export default function Providers({ mipd?: boolean }) { return ( - + {children} From da4e7de98006433eef154380805aa43f33112305 Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:06:43 +1100 Subject: [PATCH 3/3] fix: default multiInjectedProviderDiscovery to false Amp-Thread-ID: https://ampcode.com/threads/T-019bf753-ca18-7394-9458-f3888dab3880 Co-authored-by: Amp --- src/wagmi.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wagmi.config.ts b/src/wagmi.config.ts index 045bef43..4202d239 100644 --- a/src/wagmi.config.ts +++ b/src/wagmi.config.ts @@ -14,7 +14,7 @@ const rpId = (() => { })() export function getConfig(options: getConfig.Options = {}) { - const { multiInjectedProviderDiscovery } = options + const { multiInjectedProviderDiscovery = false } = options return createConfig({ batch: { multicall: false,