Skip to content

Commit

Permalink
Remove add ssh key option
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten committed Aug 30, 2024
1 parent 93aeb3f commit 7cdf650
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions libs/angular/src/vault/components/add-edit.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { PolicyService } from "@bitwarden/common/admin-console/abstractions/poli
import { OrganizationUserStatusType, PolicyType } from "@bitwarden/common/admin-console/enums";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
import { ClientType, EventType } from "@bitwarden/common/enums";
import { EventType } from "@bitwarden/common/enums";
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { UriMatchStrategy } from "@bitwarden/common/models/domain/domain-service";
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
Expand Down Expand Up @@ -130,10 +130,6 @@ export class AddEditComponent implements OnInit, OnDestroy {
{ name: i18nService.t("typeSecureNote"), value: CipherType.SecureNote },
];

if (this.platformUtilsService.getClientType() == ClientType.Desktop) {
this.typeOptions.push({ name: i18nService.t("typeSSHKey"), value: CipherType.SSHKey });
}

this.cardBrandOptions = [
{ name: "-- " + i18nService.t("select") + " --", value: null },
{ name: "Visa", value: "Visa" },
Expand Down

0 comments on commit 7cdf650

Please sign in to comment.