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(
// dispatch(updateGuildByNationalIdNewService(guildsDataArray)).then( (result) => {
// (result) => { if (result.payload.error) {
// if (result.payload.error) { handleSubmitError(openNotif, result.payload.error);
// handleSubmitError(openNotif, result.payload.error); } else {
// } else { handleSubmitSuccess(
// handleSubmitSuccess( dispatch,
// dispatch, openNotif,
// openNotif, updateTable,
// updateTable, values,
// values, result.payload?.data
// result.payload?.data );
// ); }
// } }
// } );
// );
}, },
}); });