feat : fix the login login.

feat : in "fund transfer" user can send money from SA and SB account
This commit is contained in:
2025-10-14 12:56:39 +05:30
parent 242e8d544b
commit eb6b963c40
6 changed files with 32 additions and 209 deletions

View File

@@ -110,7 +110,7 @@ export default function QuickPay() {
});
const data = await response.json();
if (response.ok && Array.isArray(data)) {
const filterSAaccount = data.filter((acc) => acc.stAccountType === 'SA');
const filterSAaccount = data.filter((acc) => ['SA', 'SB'].includes(acc.stAccountType));
setAccountData(filterSAaccount);
}
} catch {