This commit is contained in:
2026-03-29 15:30:09 +03:00
parent 567a85486b
commit eca3d1f294
3 changed files with 5 additions and 21 deletions
+2 -1
View File
@@ -993,7 +993,8 @@ class _ToAccountDropdownOverlay extends ConsumerWidget {
return Column(
mainAxisSize: MainAxisSize.min,
children: filteredAccounts.map((account) {
final isSelected = account.id == toAccountId;
final isSelected =
toAccountId != null && account.id == toAccountId;
return InkWell(
borderRadius: BorderRadius.circular(12),
onTap: () {