From 067e2e658e9b9b04c692816922cdb00557658b20 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 30 Dec 2025 16:29:23 +0100 Subject: [PATCH] Deprecate platforms --- .../create-or-update-activity-dialog.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts index 01b389789..b44e8ee6b 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts @@ -96,7 +96,6 @@ export class GfCreateOrUpdateActivityDialogComponent implements OnDestroy { public isLoading = false; public isToday = isToday; public mode: 'create' | 'update'; - public platforms: { id: string; name: string }[]; public tagsAvailable: Tag[] = []; public total = 0; public typesTranslationMap = new Map(); @@ -127,11 +126,10 @@ export class GfCreateOrUpdateActivityDialogComponent implements OnDestroy { this.dateAdapter.setLocale(this.locale); - const { currencies, platforms } = this.dataService.fetchInfo(); + const { currencies } = this.dataService.fetchInfo(); this.currencies = currencies; this.defaultDateFormat = getDateFormatString(this.locale); - this.platforms = platforms; this.dataService .fetchPortfolioHoldings()