|
|
@ -129,7 +129,7 @@ export class FinancialModelingPrepService implements DataProviderInterface { |
|
|
|
|
|
|
|
|
response.countries = etfCountryWeightings |
|
|
response.countries = etfCountryWeightings |
|
|
.filter(({ country: countryName }) => { |
|
|
.filter(({ country: countryName }) => { |
|
|
return countryName !== 'Other'; |
|
|
return countryName.toLowerCase() !== 'other'; |
|
|
}) |
|
|
}) |
|
|
.map(({ country: countryName, weightPercentage }) => { |
|
|
.map(({ country: countryName, weightPercentage }) => { |
|
|
let countryCode: string; |
|
|
let countryCode: string; |
|
|
|