From 10c4e718f9e6e50f1be0f6d66a5d43a620e08cfa Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 14 May 2023 12:24:39 +0300 Subject: [PATCH] Fix for payment type --- lib/ui/app/entity_dropdown.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/app/entity_dropdown.dart b/lib/ui/app/entity_dropdown.dart index 2107264f3..4e4b39812 100644 --- a/lib/ui/app/entity_dropdown.dart +++ b/lib/ui/app/entity_dropdown.dart @@ -353,7 +353,7 @@ class _EntityDropdownState extends State { optionsViewBuilder: (BuildContext context, AutocompleteOnSelected onSelected, Iterable options) { - if ((widget.entityId ?? '').isNotEmpty) { + if (hasValue) { return SizedBox(); }