1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

PM-23826 fix type test failure in the build

This commit is contained in:
voommen-livefront
2025-07-24 09:50:14 -05:00
parent 2755fda417
commit 7e0872361c

View File

@@ -45,9 +45,9 @@ export class ConnectDialogComponent {
const result: ConnectDialogResult = {
integrationSettings: this.connectInfo.settings,
url: this.formGroup.value.url,
bearerToken: this.formGroup.value.bearerToken,
index: this.formGroup.value.index,
url: this.formGroup.value.url ?? "",
bearerToken: this.formGroup.value.bearerToken ?? "",
index: this.formGroup.value.index ?? "",
success: true,
error: null,
};