Skip to content

Commit 82b9226

Browse files
committed
fix: update changelog for account group naming inconsistency fix
Clarified the changelog entry to include a reference to the related pull request (#6601) that addresses the account group naming inconsistency caused by using alphabetical sorting instead of the actual groupIndex. This ensures accurate sequential numbering across wallets.
1 parent c6e4b1a commit 82b9226

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/account-tree-controller/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111

12-
- Fix account group naming inconsistency where entropy groups used alphabetical sorting instead of actual groupIndex, causing incorrect sequential numbering across wallets
12+
- Fix account group naming inconsistency where entropy groups used alphabetical sorting instead of actual groupIndex, causing incorrect sequential numbering across wallets ([#6601](https://github.com/MetaMask/core/pull/6601))
1313

1414
## [0.13.1]
1515

packages/account-tree-controller/src/AccountTreeController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export class AccountTreeController extends BaseController<
329329

330330
// Calculate group index for default naming
331331
let groupIndex: number;
332-
332+
333333
// For entropy-based multichain groups, use the actual groupIndex from metadata
334334
// instead of calculating from alphabetical sort position
335335
if (group.type === 'multichain-account' && 'entropy' in group.metadata) {

0 commit comments

Comments
 (0)