From 18f32905ae8f32265af3e3e8ff4896cb0d44c539 Mon Sep 17 00:00:00 2001 From: Anoop N Date: Thu, 7 Nov 2024 23:15:59 +0530 Subject: [PATCH] =?UTF-8?q?fix(pci-public-ip):=20fix=20=C2=B5-app's=20buil?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Anoop N --- .../pci-public-ip/src/components/CatalogPrice.component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } : {}),