We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1c19b commit 3d9bbf6Copy full SHA for 3d9bbf6
packages/account-tree-controller/src/AccountTreeController.ts
@@ -1158,7 +1158,9 @@ export class AccountTreeController extends BaseController<
1158
// We clear existing contexts for previous accounts of that group because:
1159
// - Accounts might have been removed
1160
// - Accounts context mapping will get updated below
1161
- group.accounts.forEach(accountId => this.#accountIdToContext.delete(accountId));
+ group.accounts.forEach((accountId) =>
1162
+ this.#accountIdToContext.delete(accountId),
1163
+ );
1164
1165
group.accounts = accountIds;
1166
}
0 commit comments