feat: enhance chart tooltip and legend components with improved type definitions and payload handling

This commit is contained in:
Julien Froidefond
2025-11-27 10:02:27 +01:00
parent 66c4ead350
commit c6299de8b2
5 changed files with 2405 additions and 18 deletions

View File

@@ -42,7 +42,7 @@ export function parseOFX(content: string): OFXAccount | null {
amount: Number.parseFloat(amountStr),
name: cleanString(name),
memo: memo ? cleanString(memo) : undefined,
checkNum,
checkNum: checkNum ?? undefined,
type,
})
}