Skip to content

Commit

Permalink
fix(pci-public-ip): fix µ-app's build
Browse files Browse the repository at this point in the history
Signed-off-by: Anoop N <[email protected]>
  • Loading branch information
anooparveti committed Nov 11, 2024
1 parent 80a47ae commit 18f3290
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 } : {}),
Expand Down

0 comments on commit 18f3290

Please sign in to comment.