From e9fc230dc1aec06fc4478d1cdd3c2524d7b3a2d9 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Mon, 13 Oct 2025 17:34:06 -0400 Subject: [PATCH] [PM-26505] Fix Autotype update login issue (#16732) --- apps/desktop/src/vault/app/vault/vault-v2.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/desktop/src/vault/app/vault/vault-v2.component.ts b/apps/desktop/src/vault/app/vault/vault-v2.component.ts index 5f888e081c1..6dda97807be 100644 --- a/apps/desktop/src/vault/app/vault/vault-v2.component.ts +++ b/apps/desktop/src/vault/app/vault/vault-v2.component.ts @@ -723,9 +723,7 @@ export class VaultV2Component this.cipherId = cipher.id; this.cipher = cipher; - if (this.activeUserId) { - await this.cipherService.clearCache(this.activeUserId).catch(() => {}); - } + await this.vaultItemsComponent?.load(this.activeFilter.buildFilter()).catch(() => {}); await this.go().catch(() => {}); await this.vaultItemsComponent?.refresh().catch(() => {});