From a003fa1be03225845567d8b5eb15eabfda2dd356 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Wed, 21 Jan 2026 16:33:17 -0800 Subject: [PATCH] re-add comment --- .../popup/components/vault-v2/vault-v2.component.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/browser/src/vault/popup/components/vault-v2/vault-v2.component.ts b/apps/browser/src/vault/popup/components/vault-v2/vault-v2.component.ts index 866d6c16b1f..6d21e54e2e6 100644 --- a/apps/browser/src/vault/popup/components/vault-v2/vault-v2.component.ts +++ b/apps/browser/src/vault/popup/components/vault-v2/vault-v2.component.ts @@ -137,8 +137,17 @@ export class VaultV2Component implements OnInit, AfterViewInit, OnDestroy { activeUserId: UserId | null = null; + /** + * Subject that indicates whether the vault is ready to render + * and that all initialization tasks have been completed (ngOnInit). + * @private + */ private readySubject = new BehaviorSubject(false); + /** + * Indicates whether the vault is loading and not yet ready to be displayed. + * @protected + */ protected loading$ = combineLatest([ this.vaultPopupLoadingService.loading$, this.readySubject.asObservable(),