diff --git a/packages/hub/src/scope.ts b/packages/hub/src/scope.ts index 8b4505e46339..0f391d9f7383 100644 --- a/packages/hub/src/scope.ts +++ b/packages/hub/src/scope.ts @@ -440,12 +440,10 @@ export class Scope implements ScopeInterface { protected _notifyScopeListeners(): void { if (!this._notifyingListeners) { this._notifyingListeners = true; - setTimeout(() => { - this._scopeListeners.forEach(callback => { - callback(this); - }); - this._notifyingListeners = false; + this._scopeListeners.forEach(callback => { + callback(this); }); + this._notifyingListeners = false; } }