diff --git a/packages/manager/apps/pci-public-ip/src/components/CatalogPrice.component.tsx b/packages/manager/apps/pci-public-ip/src/components/CatalogPrice.component.tsx index ccdb59e9c459..6628e2713942 100644 --- a/packages/manager/apps/pci-public-ip/src/components/CatalogPrice.component.tsx +++ b/packages/manager/apps/pci-public-ip/src/components/CatalogPrice.component.tsx @@ -37,7 +37,7 @@ export const CatalogPriceComponent = ({ const getTextPrice = (priceInCents: number) => { const priceToFormat = priceInCents / 100000000; - const numberFormatOptions = { + const numberFormatOptions: Intl.NumberFormatOptions = { style: 'currency', currency: user?.currency.code, ...(maximumFractionDigits ? { maximumFractionDigits } : {}),