1
0
mirror of https://github.com/bitwarden/web synced 2025-12-10 21:33:16 +00:00

Forwarded email providers to username generator (#1628)

* forwarded emails

* firefox relay

* remove firefox relay

* update jslib ref

* remove dupe logService
This commit is contained in:
Kyle Spearrin
2022-05-02 10:32:15 -04:00
committed by GitHub
parent 06d95bb224
commit 248938ca00
5 changed files with 111 additions and 29 deletions

View File

@@ -26,8 +26,8 @@ export class GeneratorComponent extends BaseGeneratorComponent {
stateService: StateService,
platformUtilsService: PlatformUtilsService,
i18nService: I18nService,
route: ActivatedRoute,
logService: LogService,
route: ActivatedRoute,
private modalService: ModalService
) {
super(
@@ -40,6 +40,11 @@ export class GeneratorComponent extends BaseGeneratorComponent {
route,
window
);
// Cannot use Firefox Relay on the web vault yet due to CORS issues with Firefox Relay API
this.forwardOptions.splice(
this.forwardOptions.findIndex((o) => o.value === "firefoxrelay"),
1
);
}
async history() {