remove debug console log

This commit is contained in:
Wikzyy
2025-03-16 21:14:46 +07:00
parent baee875ac4
commit 34872ac21d
4 changed files with 8 additions and 8 deletions

View File

@ -112,7 +112,7 @@ const AddDialog = () => {
}
doCreateProvider(e);
console.log(formField);
// console.log(formField);
setAlert({ show: false, message: '' });
};
@ -138,7 +138,7 @@ const AddDialog = () => {
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
console.log('CUSTOMER: ', response?.data);
// console.log('CUSTOMER: ', response?.data);
setCustomers(response?.data.list);
} catch (error) {
console.error('Error fetching customer', error);
@ -155,7 +155,7 @@ const AddDialog = () => {
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
console.log('TRANSACTION TYPE: ', response?.data);
// console.log('TRANSACTION TYPE: ', response?.data);
setTransactions(response?.data.list);
} catch (error) {
console.error('Error fetching transaction type', error);