From 1da5b8e7643fc7b7e90d0af0793804abde123580 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Wed, 11 Feb 2026 11:20:12 +0700 Subject: [PATCH] feat(lib): remove ngOnChanges --- libs/ui/src/lib/holdings-table/holdings-table.component.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libs/ui/src/lib/holdings-table/holdings-table.component.ts b/libs/ui/src/lib/holdings-table/holdings-table.component.ts index 01b660b9e..567d5c97f 100644 --- a/libs/ui/src/lib/holdings-table/holdings-table.component.ts +++ b/libs/ui/src/lib/holdings-table/holdings-table.component.ts @@ -11,7 +11,6 @@ import { Component, EventEmitter, Input, - OnChanges, OnDestroy, Output, computed, @@ -48,7 +47,7 @@ import { GfValueComponent } from '../value/value.component'; styleUrls: ['./holdings-table.component.scss'], templateUrl: './holdings-table.component.html' }) -export class GfHoldingsTableComponent implements OnChanges, OnDestroy { +export class GfHoldingsTableComponent implements OnDestroy { @Input() baseCurrency: string; @Input() deviceType: string; @Input() locale = getLocale(); @@ -99,10 +98,6 @@ export class GfHoldingsTableComponent implements OnChanges, OnDestroy { private readonly unsubscribeSubject = new Subject(); - public ngOnChanges() { - return; - } - public onOpenHoldingDialog({ dataSource, symbol }: AssetProfileIdentifier) { if (this.hasPermissionToOpenDetails()) { this.holdingClicked.emit({ dataSource, symbol });