Thomas Kaul
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts
|
@ -78,7 +78,7 @@ export class ExchangeRateDataService { |
|
|
); |
|
|
); |
|
|
const lastDateString = dateStrings.reduce((a, b) => { |
|
|
const lastDateString = dateStrings.reduce((a, b) => { |
|
|
return a > b ? a : b; |
|
|
return a > b ? a : b; |
|
|
}); |
|
|
}, undefined); |
|
|
|
|
|
|
|
|
let previousExchangeRate = |
|
|
let previousExchangeRate = |
|
|
exchangeRatesByCurrency[`${currency}${targetCurrency}`]?.[ |
|
|
exchangeRatesByCurrency[`${currency}${targetCurrency}`]?.[ |
|
|