update avg aggregate for revenue report

This commit is contained in:
Francis Cao 2024-10-15 09:24:19 -07:00
parent 9d0da45c09
commit 065499a3fa
5 changed files with 17 additions and 23 deletions

View file

@ -114,5 +114,5 @@ export function formatLongCurrency(value: number, currency: string, locale = 'en
return `${formatCurrency(n / 1000, currency, locale)}k`;
}
return formatCurrency(n / 1000, currency, locale);
return formatCurrency(n, currency, locale);
}