Browse Source

Merge branch 'main' into feature/improve-alignment-in-portfolio-performance-component

pull/2867/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
f12aa9f2ce
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the alignment in the portfolio performance chart
### Fixed
- Fixed the currency in the error log of the exchange rate data service
## 2.38.0 - 2024-01-13
### Added

2
apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

@ -87,7 +87,7 @@ export class ExchangeRateDataService {
exchangeRatesByCurrency[currency][dateString] = previousExchangeRate;
Logger.error(
`No exchange rate has been found for ${DEFAULT_CURRENCY}${targetCurrency} at ${dateString}`,
`No exchange rate has been found for ${DEFAULT_CURRENCY}${currency} at ${dateString}`,
'ExchangeRateDataService'
);
} else {

Loading…
Cancel
Save