remove log

This commit is contained in:
Martha King 2024-05-28 15:25:01 +01:00
parent a579d3765e
commit ecf9b0fec9

View File

@ -159,7 +159,6 @@ const numberFormat = new Intl.NumberFormat(undefined, {
})
function formatNumber(params: ICellRendererParams) {
console.log({ params })
const valueType = params.value?.type
const value = valueType === 'BigInt' ? BigInt(params.value?.value) : params.value
const needsGrouping = dataGroupingMap.value?.get(params.colDef?.field || '')