reject member

This commit is contained in:
unknown
2025-03-11 14:02:22 +07:00
parent d14b219d6f
commit d21b941590

View File

@ -112,7 +112,7 @@ const Kyc = () => {
delete updateData.group_deleted_at; delete updateData.group_deleted_at;
try { try {
if (dialogType === 'reject') { if (dialogType === 'reject') {
await axios.put(`${BASE_URL}/customer/reject`, {customerid: customerId}) await axios.post(`${BASE_URL}/customer/reject`, {customerid: customerId})
} }
if (dialogType === 'update') { if (dialogType === 'update') {
await axios.put(`${BASE_URL}/customer/update/${customerId}`, updateData) await axios.put(`${BASE_URL}/customer/update/${customerId}`, updateData)