Fix for payment type

This commit is contained in:
Hillel Coren 2023-05-14 12:24:39 +03:00
parent 55e7ca2397
commit 10c4e718f9
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ class _EntityDropdownState extends State<EntityDropdown> {
optionsViewBuilder: (BuildContext context,
AutocompleteOnSelected<SelectableEntity> onSelected,
Iterable<SelectableEntity> options) {
if ((widget.entityId ?? '').isNotEmpty) {
if (hasValue) {
return SizedBox();
}