update crud form

This commit is contained in:
Wikzyy
2025-03-10 13:28:28 +07:00
parent cf7183aa99
commit 96d1210e0d
5 changed files with 7 additions and 5 deletions

View File

@ -8,7 +8,7 @@ const ProfessionMaster = () => {
return (
<ManageProfessionContextProvider>
<Container>
<h1 className="text-xl font-medium leading-none text-gray-900 mb-5">Profession</h1>
<h1 className="text-xl font-medium leading-none text-gray-900 mb-5">Manage Profession</h1>
<div className="grid gap-5 lg:gap-7.5">
<DataGridInner />
</div>

View File

@ -66,7 +66,7 @@ const AddDialog = () => {
return;
}
// doCreateProfession(e);
doCreateProfession(e);
console.log(formField);
setAlert({ show: false, message: '' });
};

View File

@ -70,7 +70,7 @@ const EditDialog = () => {
return;
}
// doUpdateProfession(e);
doUpdateProfession(e);
console.log(formField);
setAlert({ show: false, message: '' });
};