From 818189e8e34cd2d2b05d2dfa636fe8548955614f Mon Sep 17 00:00:00 2001 From: MananTank Date: Wed, 30 Apr 2025 22:56:56 +0000 Subject: [PATCH] Nebula: Fix nebula auto connect (#6899) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR modifies the `NebulaConnectButton` component by adding an `autoConnect` prop set to `false`, clarifying that an `AutoConnect` feature is already implemented at the root layout with an AA configuration. ### Detailed summary - Added `autoConnect={false}` prop to the `NebulaConnectButton` component. - Included a comment indicating that an `AutoConnect` is already present in the root layout with AA configuration. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .../src/app/nebula-app/(app)/components/NebulaConnectButton.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/NebulaConnectButton.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/NebulaConnectButton.tsx index acac5f04a3e..4255793dd7e 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/NebulaConnectButton.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/NebulaConnectButton.tsx @@ -92,6 +92,8 @@ export const NebulaConnectWallet = (props: { className: props.detailsButtonClassName, }} chains={allChainsV5} + // we have an AutoConnect already added in root layout with AA configuration + autoConnect={false} /> ); };