Split preparation and submission of transaction in Actual backend

This commit is contained in:
2025-05-06 14:12:54 +02:00
parent 47892f8262
commit 23b92aa90d
5 changed files with 147 additions and 130 deletions

View File

@@ -66,5 +66,5 @@ export function parseAmount(input?: string): number|undefined {
}
export function deduplicateSpaces(input: string): string {
return input.replaceAll(/\s+/, " ");
return input.replaceAll(/\s+/g, " ");
}