Display the list of expenses

This commit is contained in:
2025-07-14 16:49:32 +02:00
parent 547e9b7aad
commit 50812af2fc
7 changed files with 145 additions and 57 deletions

View File

@@ -54,7 +54,7 @@ class ExpenseEditor extends HookConsumerWidget {
pending.value = onFinished(
BaseExpenseInfo(
label: labelController.text,
label: labelController.text.isEmpty ? null : labelController.text,
cost: double.tryParse(costController.text) ?? 0,
time: timeController.value,
),