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:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user