amalia/08-jun-26 #56

Merged
amaliadwiy merged 6 commits from amalia/08-jun-26 into join 2026-06-08 17:27:24 +08:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit 9dc4d8dc8d - Show all commits

View File

@@ -84,7 +84,7 @@ export default function Notification() {
}
const parseDate = (str: string) => {
const [d, m, y] = str.split(' ')
return new Date(Number(y), BULAN[m] ?? 0, Number(d)).getTime()
return new Date(Number(y), BULAN[m?.toUpperCase()] ?? 0, Number(d)).getTime()
}
const groups: Record<string, Props[]> = {}