in src/frontend/services/ProductCatalog.service.ts [11:15]
async getProductPrice(price: Money, currencyCode: string) {
return !!currencyCode && currencyCode !== defaultCurrencyCode
? await CurrencyGateway.convert(price, currencyCode)
: price;
},