remove => unnecessary console logs

This commit is contained in:
2026-02-01 10:55:13 +03:30
parent 331fb98625
commit cf11b64d8e
26 changed files with 57 additions and 120 deletions

View File

@@ -143,7 +143,6 @@ export const handleSetFormDataFromTableDataForSlaughterAddBuyer = (
tableData,
formik
) => {
console.log(tableData);
const formData = {
mobile: tableData.mobile || "",
firstName: tableData.firstName || "",

View File

@@ -135,7 +135,6 @@ export const handleSetFormDataFromUserDataForStewardAddBuyer = (
) => {
const user = userData?.[0];
if (user) {
console.log(user);
formik.setValues({
mobile: user.mobile || "",
firstName: user.firstName || "",

View File

@@ -88,7 +88,6 @@ export const StewardShowAllocations = forwardRef(
};
const updateTable = () => {
console.log("--------------------------------------");
fetchApiData(1);
handleUpdate();
};