diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f14bb8d9..b1a7c25ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed the cash positions being included in the by continent, by country and by sector charts on the allocations page and the public page - Fixed the allocations in percentage exceeding 100% in the restricted view - Fixed the portfolio calculation for holdings with activities before the first known historical market price by falling back to the unit price of the activity +- Fixed the missing country mapping of _Virgin Islands (British)_ in the _Financial Modeling Prep_ service ## 3.64.0 - 2026-08-30 diff --git a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts index 12862937b..ced4db38a 100644 --- a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts +++ b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts @@ -59,7 +59,8 @@ export class FinancialModelingPrepService Macau: 'MO', 'Russian Federation': 'RU', 'Taiwan (Province of China)': 'TW', - Turkey: 'TR' + Turkey: 'TR', + 'Virgin Islands (British)': 'VG' }; private readonly logger = new Logger(FinancialModelingPrepService.name);