diff --git a/libs/common/src/lib/helper.ts b/libs/common/src/lib/helper.ts index f929d70ad..3db20beb8 100644 --- a/libs/common/src/lib/helper.ts +++ b/libs/common/src/lib/helper.ts @@ -251,7 +251,7 @@ export function getNumberFormatDecimal(aLocale?: string) { } export function getNumberFormatGroup(aLocale = getLocale()) { - const formatOptions = {'useGrouping': true} + const formatOptions = {'useGrouping': true}; const formatObject = new Intl.NumberFormat(aLocale, formatOptions).formatToParts(9999.99); return formatObject.find((object) => {