From acfb5bf9cfcc96338d3473e767b2044e9eeef6eb Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Tue, 18 Apr 2023 20:15:30 +0200 Subject: [PATCH] Clean up --- .../eod-historical-data/eod-historical-data.service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts index 8f9528ead..4f1113d3f 100644 --- a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts +++ b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts @@ -197,15 +197,10 @@ export class EodHistoricalDataService implements DataProviderInterface { private convertCurrency(aCurrency: string) { let currency = aCurrency; - console.log('convertCurrency', currency); - if (currency === 'GBX') { currency = 'GBp'; } - console.log(currency); - console.log('---'); - return currency; }