-
Notifications
You must be signed in to change notification settings - Fork 5.4k
fix: hide account menu in dapp connection flow #37704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
fabiobozzo
merged 2 commits into
main
from
fix/MUL-1244-hide-kebab-account-details-connect-dapp
Nov 12, 2025
Merged
fix: hide account menu in dapp connection flow #37704
fabiobozzo
merged 2 commits into
main
from
fix/MUL-1244-hide-kebab-account-details-connect-dapp
Nov 12, 2025
+35
−7
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Added a test to verify that the account menu (three dots) is hidden when the `showAccountCheckbox` prop is set to true in the `MultichainAccountList` component. Updated the component logic to conditionally render the account menu based on this prop.
Contributor
|
CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes. |
Collaborator
✨ Files requiring CODEOWNER review ✨🔑 @MetaMask/accounts-engineers (2 files, +35 -7)
|
Collaborator
Builds ready [b93d88b]
UI Startup Metrics (1217 ± 86 ms)
📊 Page Load Benchmark ResultsCurrent Commit: 📄 Localhost MetaMask Test DappSamples: 100 Summary
📈 Detailed Results
Bundle size diffs [🚨 Warning! Bundle size has increased!]
|
montelaidev
reviewed
Nov 11, 2025
ui/components/multichain-accounts/multichain-account-list/multichain-account-list.tsx
Outdated
Show resolved
Hide resolved
gantunesr
reviewed
Nov 11, 2025
ui/components/multichain-accounts/multichain-account-list/multichain-account-list.tsx
Outdated
Show resolved
Hide resolved
Collaborator
Builds ready [40b264c]
UI Startup Metrics (1220 ± 93 ms)
📊 Page Load Benchmark ResultsCurrent Commit: 📄 Localhost MetaMask Test DappSamples: 100 Summary
📈 Detailed Results
Bundle size diffs [🚨 Warning! Bundle size has increased!]
|
gantunesr
approved these changes
Nov 12, 2025
montelaidev
approved these changes
Nov 12, 2025
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
release-13.10.0
Issue or pull request that will be included in release 13.10.0
size-S
team-accounts-framework
Accounts Framework team
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Fixes a bug where clicking the account details menu (3 dots) in the Connect to dapp screen does nothing. The menu should not be displayed in this flow since users are selecting accounts via checkboxes, not accessing account details.
Changes:
MultichainAccountMenu) inMultichainAccountListwhen in account selection mode (showAccountCheckboxis true)Changelog
CHANGELOG entry: Fixed account details menu appearing in dapp connection account selection
Related issues
Fixes: #37604
Manual testing steps
Screenshots/Recordings
Before
Account menu (3 dots) was visible but non-functional in the edit accounts flow during dapp connection (see bug).
After
Account menu (3 dots) is now hidden in the edit accounts flow, only checkboxes are shown for account selection:
Pre-merge author checklist
Pre-merge reviewer checklist
Note
Hide the per-account menu when
showAccountCheckboxis true inMultichainAccountList, with tests verifying the menu is not rendered.ui/components/multichain-accounts/multichain-account-list/multichain-account-list.tsx:MultichainAccountMenuonly whenshowAccountCheckboxis false (showAccountMenu = !showAccountCheckbox).multichain-account-list.test.tsx:showAccountCheckboxis true.Written by Cursor Bugbot for commit 40b264c. This will update automatically on new commits. Configure here.