From 39d6d3900aa073bc990c1f2efc6d47599908b591 Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 30 Oct 2024 11:14:55 +0100 Subject: [PATCH] Fix empty Arrow functions --- .../asset-profile-dialog/asset-profile-dialog.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts index 2eb1559de..e96b3fb2d 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts @@ -190,14 +190,14 @@ export class AssetProfileDialog implements OnDestroy, OnInit { this.adminService .gatherProfileDataBySymbol({ dataSource, symbol }) .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(() => {}); + .subscribe(); } public onGatherSymbol({ dataSource, symbol }: AssetProfileIdentifier) { this.adminService .gatherSymbol({ dataSource, symbol }) .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(() => {}); + .subscribe(); } public onGatherSymbolMissingOnly({ @@ -207,7 +207,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit { this.adminService .gatherSymbolMissingOnly({ dataSource, symbol }) .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(() => {}); + .subscribe(); } public onImportHistoricalData() {