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
+1 -1
View File
@@ -12,7 +12,7 @@ const loginSchema = z.object({
password: z.string().min(6, 'Kata sandi minimal 6 karakter'),
})
export type TLoginSchema = z.infer<typeof loginSchema>
type TLoginSchema = z.infer<typeof loginSchema>
type TProperties = {
setIsRegisterOpen: Dispatch<SetStateAction<boolean>>