remove: log from create guilds

This commit is contained in:
2026-02-01 15:03:02 +03:30
parent 74ba1dddb6
commit f51756be49

View File

@@ -131,22 +131,21 @@ export const CreateGuilds = ({ guild, updateTable }) => {
);
});
console.log(guildsDataArray);
// dispatch(updateGuildByNationalIdNewService(guildsDataArray)).then(
// (result) => {
// if (result.payload.error) {
// handleSubmitError(openNotif, result.payload.error);
// } else {
// handleSubmitSuccess(
// dispatch,
// openNotif,
// updateTable,
// values,
// result.payload?.data
// );
// }
// }
// );
dispatch(updateGuildByNationalIdNewService(guildsDataArray)).then(
(result) => {
if (result.payload.error) {
handleSubmitError(openNotif, result.payload.error);
} else {
handleSubmitSuccess(
dispatch,
openNotif,
updateTable,
values,
result.payload?.data
);
}
}
);
},
});