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

@ -126,7 +126,7 @@ const EditDialog = () => {
}
doUpdateProvider(e);
console.log(formField);
// console.log(formField);
setAlert({ show: false, message: '' });
};
@ -158,7 +158,7 @@ const EditDialog = () => {
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);
@ -175,7 +175,7 @@ const EditDialog = () => {
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);