payment plan

master
alex 2024-02-11 11:44:06 +01:00
parent 6d3e41bbbb
commit 6aa1ceb3a4
1 changed files with 3 additions and 3 deletions

View File

@ -18,6 +18,7 @@ import {
EncodeStringToBase64,
showInputsInvalidNotification,
Constants,
showUnkownErrorNotification,
} from "../../../utils";
import { useTranslation } from "react-i18next";
import MyTable from "../../../Components/MyTable";
@ -334,9 +335,8 @@ function ModalAddEditEmployee({
fetchEmployees();
})
.catch((errStatus) => {
console.log(errStatus);
.catch(() => {
showUnkownErrorNotification(notificationApi, t);
setIsRequesting(false);
});
})