From fd65ebca0f78493bbccb51d81417694154b2bdea 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 684b672d859..5566cd51baf 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