From c2843976b00a41f8edce84c36939dab6a28aa570 Mon Sep 17 00:00:00 2001 From: chausman <chausman@nrao.edu> Date: Mon, 12 Jun 2023 11:02:15 -0600 Subject: [PATCH] remove duplicate meethod --- .../request-operations.component.ts | 16 ---------------- 1 file changed, 16 deletions(-) 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 4cbeea5e6..77af92466 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, -- GitLab