Skip to content

Commit 818189e

Browse files
committed
Nebula: Fix nebula auto connect (#6899)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex -->
1 parent 7306818 commit 818189e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/dashboard/src/app/nebula-app/(app)/components/NebulaConnectButton.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ export const NebulaConnectWallet = (props: {
9292
className: props.detailsButtonClassName,
9393
}}
9494
chains={allChainsV5}
95+
// we have an AutoConnect already added in root layout with AA configuration
96+
autoConnect={false}
9597
/>
9698
);
9799
};

0 commit comments

Comments
 (0)