diff --git a/apps/browser/src/vault/popup/components/vault/vault-v2.component.html b/apps/browser/src/vault/popup/components/vault/vault-v2.component.html
index 9f38fd61fab..694c0e9be52 100644
--- a/apps/browser/src/vault/popup/components/vault/vault-v2.component.html
+++ b/apps/browser/src/vault/popup/components/vault/vault-v2.component.html
@@ -11,7 +11,10 @@
-
+
{{ "yourVaultIsEmpty" | i18n }}
{{ "autofillSuggestionsTip" | i18n }}
@@ -21,13 +24,12 @@
-
+
-
@@ -37,7 +39,7 @@
@@ -46,7 +48,7 @@
-
+
{
+ switch (true) {
+ case emptyVault:
+ this.vaultState = VaultState.Empty;
+ break;
+ case deactivatedOrg:
+ // The deactivated org state takes precedence over the no results state
+ this.vaultState = VaultState.DeactivatedOrg;
+ break;
+ case noResults:
+ this.vaultState = VaultState.NoResults;
+ break;
+ default:
+ this.vaultState = null;
+ }
+ });
+ }
ngOnInit(): void {}