Don’t show bank account balance when importing transaction CSV

This commit is contained in:
Hillel Coren 2023-01-08 11:04:57 +02:00
parent 573d50a44c
commit 8200f7904a
1 changed files with 1 additions and 0 deletions

View File

@ -583,6 +583,7 @@ class __FileMapperState extends State<_FileMapper> {
validator: (dynamic value) => (_bankAccountId ?? '').isEmpty validator: (dynamic value) => (_bankAccountId ?? '').isEmpty
? localization.pleaseEnterAValue ? localization.pleaseEnterAValue
: null, : null,
overrideSuggestedAmount: (entity) => '',
)); ));
} }
} }