feat: fix amount property typo and format numbers for dashboard reports

This commit is contained in:
Ardeman
2025-02-24 08:04:09 +08:00
parent e484af6e71
commit e11f007eb1
5 changed files with 17 additions and 11 deletions
+3
View File
@@ -0,0 +1,3 @@
export const formatNumberWithPeriods = (number: number) => {
return new Intl.NumberFormat('id-ID').format(number)
}