Transaction Details Bug Fixed

This commit is contained in:
2025-09-10 18:10:18 +05:30
parent e4e104837b
commit 52e9f59e6f
15 changed files with 264 additions and 195 deletions

View File

@@ -40,8 +40,8 @@ class _FundTransferBeneficiaryScreenState
_beneficiaries = data
.where((b) => widget.isOwnBank
? b.bankName ==
'THE KANGRA CENTRAL CO-OP BANK LIMITED' // Assuming 'KCCB' is your bank's name
: b.bankName != 'THE KANGRA CENTRAL CO-OP BANK LIMITED')
'THE KANGRA CENTRAL COOPERATIVE BANK LIMITED'
: b.bankName != 'THE KANGRA CENTRAL COOPERATIVE BANK LIMITED')
.toList();
_isLoading = false;
});