diff --git a/apps/desktop/src/vault/app/vault/vault-items-v2.component.ts b/apps/desktop/src/vault/app/vault/vault-items-v2.component.ts index 1ec0bb0b22e..a6582f6de58 100644 --- a/apps/desktop/src/vault/app/vault/vault-items-v2.component.ts +++ b/apps/desktop/src/vault/app/vault/vault-items-v2.component.ts @@ -9,7 +9,6 @@ import { VaultItemsComponent as BaseVaultItemsComponent } from "@bitwarden/angul import { AccountService } from "@bitwarden/common/auth/abstractions/account.service"; import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service"; import { uuidAsString } from "@bitwarden/common/platform/abstractions/sdk/sdk.service"; -import { OrganizationId } from "@bitwarden/common/types/guid"; import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service"; import { PremiumUpgradePromptService } from "@bitwarden/common/vault/abstractions/premium-upgrade-prompt.service"; import { SearchService } from "@bitwarden/common/vault/abstractions/search.service"; @@ -32,7 +31,6 @@ import { SearchBarService } from "../../../app/layout/search/search-bar.service" }) export class VaultItemsV2Component extends BaseVaultItemsComponent { readonly showPremiumCallout = input(false); - readonly organizationId = input(undefined); protected CipherViewLikeUtils = CipherViewLikeUtils; @@ -55,7 +53,7 @@ export class VaultItemsV2Component extends BaseVaultIt } async navigateToGetPremium() { - await this.premiumUpgradePromptService.promptForPremium(this.organizationId()); + await this.premiumUpgradePromptService.promptForPremium(); } trackByFn(index: number, c: C): string { diff --git a/apps/desktop/src/vault/app/vault/vault-v2.component.html b/apps/desktop/src/vault/app/vault/vault-v2.component.html index 61b7c0ee355..129db673b39 100644 --- a/apps/desktop/src/vault/app/vault/vault-v2.component.html +++ b/apps/desktop/src/vault/app/vault/vault-v2.component.html @@ -7,7 +7,6 @@ (onCipherRightClicked)="viewCipherMenu($event)" (onAddCipher)="addCipher($event)" [showPremiumCallout]="showPremiumCallout$ | async" - [organizationId]="organizationId" > @if (!!action) {