1
0
mirror of https://github.com/google/nomulus synced 2026-01-03 19:54:18 +00:00

Remove console security settings timeout (#2728)

This commit is contained in:
Pavlo Tkach
2025-03-25 15:36:52 -04:00
committed by GitHub
parent 967d04efce
commit 98ba80d94e

View File

@@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { switchMap, timeout } from 'rxjs'; import { switchMap } from 'rxjs';
import { import {
IpAllowListItem, IpAllowListItem,
RegistrarService, RegistrarService,
@@ -69,7 +69,6 @@ export class SecurityService {
uiToApiConverter(newSecuritySettings) uiToApiConverter(newSecuritySettings)
) )
.pipe( .pipe(
timeout(2000),
switchMap(() => { switchMap(() => {
return this.registrarService.loadRegistrars(); return this.registrarService.loadRegistrars();
}) })