fixing kyc delete member, transaction topup request, disbursement saldo

This commit is contained in:
Narul Hidayah
2025-04-16 01:44:42 +07:00
parent f424f463b8
commit c11662e127
15 changed files with 739 additions and 6 deletions

View File

@ -0,0 +1,12 @@
import { useContext } from 'react';
import { TransactionTopupContext } from './TransactionTopupContext';
const useTransactionTopupContext = () => {
const context = useContext(TransactionTopupContext);
if (!context) throw new Error('useTransactionTopupContext must be used within AuthProvider');
return context;
};
export { useTransactionTopupContext };