From 1cec126c5a4202ede365ea53e76f43ea107862cd Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Tue, 12 Aug 2025 22:40:56 -0400 Subject: [PATCH] fix(notification-processing): [PM-19877] System Notification Implementation - Removed testing code. --- .../self-hosted-env-config-dialog.component.ts | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/libs/auth/src/angular/self-hosted-env-config-dialog/self-hosted-env-config-dialog.component.ts b/libs/auth/src/angular/self-hosted-env-config-dialog/self-hosted-env-config-dialog.component.ts index e0c234fc086..a7ffca9163c 100644 --- a/libs/auth/src/angular/self-hosted-env-config-dialog/self-hosted-env-config-dialog.component.ts +++ b/libs/auth/src/angular/self-hosted-env-config-dialog/self-hosted-env-config-dialog.component.ts @@ -1,5 +1,5 @@ import { CommonModule } from "@angular/common"; -import { Component, HostListener, OnDestroy, OnInit } from "@angular/core"; +import { Component, OnDestroy, OnInit } from "@angular/core"; import { AbstractControl, FormBuilder, @@ -160,19 +160,6 @@ export class SelfHostedEnvConfigDialogComponent implements OnInit, OnDestroy { }); } - @HostListener("document:keydown.control.b", ["$event"]) - onCtrlB(event: KeyboardEvent) { - event.preventDefault(); - this.formGroup.patchValue({ - baseUrl: "", - webVaultUrl: "https://localhost:8080", - apiUrl: "http://localhost:4000", - identityUrl: "http://localhost:33656", - iconsUrl: "http://localhost:50024", - notificationsUrl: "http://localhost:61840", - }); - } - submit = async () => { this.showErrorSummary = false;