Browse Source

Fix empty Arrow functions

pull/3916/head
Dan 10 months ago
parent
commit
39d6d3900a
  1. 6
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts

6
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() {

Loading…
Cancel
Save