1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-27 10:46:02 +02:00

Remove DDG forwarder from SH (#3888)

This commit is contained in:
Justin Baur 2022-10-27 16:06:17 -04:00 committed by GitHub
parent 2ffafa1f23
commit e972e905c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,6 +46,11 @@ export class GeneratorComponent extends BaseGeneratorComponent {
this.forwardOptions.findIndex((o) => o.value === "firefoxrelay"),
1
);
// Also cannot use Duck Duck Go on self hosted web vaults due to CORS issues
this.forwardOptions.splice(
this.forwardOptions.findIndex((o) => o.value === "duckduckgo"),
1
);
}
}