add resetform + change customer title

This commit is contained in:
bagusajisaputroo
2025-03-24 15:27:02 +07:00
parent 6fc67b0b2d
commit 2960ed2b8e
7 changed files with 62 additions and 45 deletions

View File

@ -26,7 +26,6 @@ const DeleteDialog = () => {
});
const doDeleteTransferFee = useCallback(async () => {
console.log("Selected Transfer Fee:", selectedTransferFee, "Type:", typeof selectedTransferFee);
const response = await DeleteData(`${API_URL}/transactionfees/delete/${selectedTransferFee}/${enforce}`, {
id: selectedTransferFee
});
@ -42,7 +41,6 @@ const DeleteDialog = () => {
}
}, [selectedTransferFee, enforce]);
// console.log(selectedTransferFee);
return (
<Dialog open={showDeleteFeeDialog} onOpenChange={(open) => handleDeleteFeeDialog(open, null)}>