From 3eb10cc2e12aea64a03273faa411825202f6cdb4 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 4 Aug 2026 20:31:21 +0200 Subject: [PATCH] Task/remove unused exchange from portfolio position interface (#7537) Remove exchange --- .../pages/portfolio/allocations/allocations-page.component.ts | 3 +-- libs/common/src/lib/interfaces/portfolio-position.interface.ts | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts index dd2c62f98..0931578cf 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts @@ -95,7 +95,7 @@ export class GfAllocationsPageComponent implements OnInit { | 'assetSubClassLabel' | 'currency' | 'name' - > & { etfProvider: string; exchange?: string; value: number }; + > & { etfProvider: string; value: number }; }; protected isLoading = false; protected markets: PortfolioDetails['markets']; @@ -381,7 +381,6 @@ export class GfAllocationsPageComponent implements OnInit { assetSubClass: position.assetProfile.assetSubClass, name: position.assetProfile.name }), - exchange: position.exchange, name: position.assetProfile.name, value: this.showValuesInPercentage() ? position.allocationInPercentage diff --git a/libs/common/src/lib/interfaces/portfolio-position.interface.ts b/libs/common/src/lib/interfaces/portfolio-position.interface.ts index 388e661f7..65d7ea140 100644 --- a/libs/common/src/lib/interfaces/portfolio-position.interface.ts +++ b/libs/common/src/lib/interfaces/portfolio-position.interface.ts @@ -26,7 +26,6 @@ export interface PortfolioPosition { }; dateOfFirstActivity: Date; dividend: number; - exchange?: string; grossPerformance: number; grossPerformancePercent: number; grossPerformancePercentWithCurrencyEffect: number;