Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ export class AccountsChangedEvents implements DAppEventEmitter {
? [addressC]
: [];

// access state of the dApp didn't change, we can return early
if (
JSON.stringify(accounts) === JSON.stringify(this._dappAccessibleAccounts)
) {
return;
}

Comment on lines -71 to -77
Copy link
Member

@meeh0w meeh0w Nov 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does it not make Core Web or other dApps refresh unexpectedly?

this._dappAccessibleAccounts = accounts;
this.eventEmitter.emit('update', {
method: Web3Event.ACCOUNTS_CHANGED,
Expand Down
Loading