Remove console security settings timeout (#2728)

This commit is contained in:
Pavlo Tkach
2025-03-25 19:36:52 +00:00
committed by GitHub
parent 967d04efce
commit 98ba80d94e
@@ -13,7 +13,7 @@
// limitations under the License.
import { Injectable } from '@angular/core';
import { switchMap, timeout } from 'rxjs';
import { switchMap } from 'rxjs';
import {
IpAllowListItem,
RegistrarService,
@@ -69,7 +69,6 @@ export class SecurityService {
uiToApiConverter(newSecuritySettings)
)
.pipe(
timeout(2000),
switchMap(() => {
return this.registrarService.loadRegistrars();
})