From fa02d083bf0c31a2383c160b35adf649816dfe28 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Thu, 26 Feb 2026 07:59:23 +0000 Subject: [PATCH] feat(lib): remove ngOnDestroy --- .../lib/currency-selector/currency-selector.component.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libs/ui/src/lib/currency-selector/currency-selector.component.ts b/libs/ui/src/lib/currency-selector/currency-selector.component.ts index 34beefcb1..366931d54 100644 --- a/libs/ui/src/lib/currency-selector/currency-selector.component.ts +++ b/libs/ui/src/lib/currency-selector/currency-selector.component.ts @@ -8,7 +8,6 @@ import { DoCheck, ElementRef, Input, - OnDestroy, OnInit, ViewChild, inject, @@ -62,7 +61,7 @@ import { AbstractMatFormField } from '../shared/abstract-mat-form-field'; }) export class GfCurrencySelectorComponent extends AbstractMatFormField - implements DoCheck, OnDestroy, OnInit + implements DoCheck, OnInit { @ViewChild('currencyAutocomplete') public currencyAutocomplete: MatAutocomplete; @@ -152,10 +151,6 @@ export class GfCurrencySelectorComponent super.value = option.value; } - public ngOnDestroy() { - super.ngOnDestroy(); - } - private filter(value: string) { const filterValue = value.toLowerCase();