diff --git a/apps/web/src/app/workspaces/components/capability-request/components/request-operations/request-operations.component.ts b/apps/web/src/app/workspaces/components/capability-request/components/request-operations/request-operations.component.ts index 4cbeea5e6450209bb124de2ef04e827e20221dd1..77af92466f219cdb75f5ddfb94f18a47848a2fec 100644 --- a/apps/web/src/app/workspaces/components/capability-request/components/request-operations/request-operations.component.ts +++ b/apps/web/src/app/workspaces/components/capability-request/components/request-operations/request-operations.component.ts @@ -179,22 +179,6 @@ export class RequestOperationsComponent implements OnInit { return this.capabilitiesService.getAnalystEmail().subscribe(getAnalystEmailObserver); } - public loadDefaultCC() { - const getAnalystEmailObserver = { - next: (response) => { - if (response.resp) { - this.defaultCC = "schedsoc@nrao.edu," + response.resp; - } - }, - error: (error) => { - console.error("Failed to load analyst email:", error); - this.defaultCC = "schedsoc@nrao.edu"; - } - }; - - return this.capabilitiesService.getAnalystEmail().subscribe(getAnalystEmailObserver); - } - public getEmailParams() { return { "destination_email": this.selectedVersion.parameters.user_email,