From 752986bfc2dfcf0fe6b6bb85586922f3747bb312 Mon Sep 17 00:00:00 2001 From: SkyZeroZx <73321943+SkyZeroZx@users.noreply.github.com> Date: Tue, 21 Oct 2025 13:30:07 -0500 Subject: [PATCH] refactor(common): Add missing OnDestroy interface in PreconnectLinkChecker The OnDestroy interface was implemented but not declared; this adds the missing interface declaration (cherry picked from commit 207baad322bd190cb24b5d07d766145b512b022f) --- .../directives/ng_optimized_image/preconnect_link_checker.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/common/src/directives/ng_optimized_image/preconnect_link_checker.ts b/packages/common/src/directives/ng_optimized_image/preconnect_link_checker.ts index 3f6b921d9f9..b89bcfb13e5 100644 --- a/packages/common/src/directives/ng_optimized_image/preconnect_link_checker.ts +++ b/packages/common/src/directives/ng_optimized_image/preconnect_link_checker.ts @@ -12,6 +12,7 @@ import { InjectionToken, ɵformatRuntimeError as formatRuntimeError, DOCUMENT, + OnDestroy, } from '@angular/core'; import {RuntimeErrorCode} from '../../errors'; @@ -53,7 +54,7 @@ export const PRECONNECT_CHECK_BLOCKLIST = new InjectionToken