From 7e0872361c48882a75c6b50072fbdc8191b23da7 Mon Sep 17 00:00:00 2001 From: voommen-livefront Date: Thu, 24 Jul 2025 09:50:14 -0500 Subject: [PATCH] PM-23826 fix type test failure in the build --- .../connect-dialog/connect-dialog.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.ts b/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.ts index cac15737f69..e97f02142a1 100644 --- a/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.ts +++ b/apps/web/src/app/admin-console/organizations/shared/components/integrations/integration-dialog/connect-dialog/connect-dialog.component.ts @@ -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, };