1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02:00

Do not show error modal for ddg integration (#9269)

This commit is contained in:
Robyn MacCallum 2024-05-20 10:40:57 -04:00 committed by GitHub
parent f07840339e
commit 97c7ef3f21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -699,13 +699,6 @@ export class SettingsComponent implements OnInit {
);
if (errorResult !== null) {
this.logService.error("Error in DDG browser integration: " + errorResult);
await this.dialogService.openSimpleDialog({
title: { key: "browserIntegrationUnsupportedTitle" },
content: errorResult.message,
acceptButtonText: { key: "ok" },
cancelButtonText: null,
type: "warning",
});
}
}