handleOnFinish()
const handleOnFinish = (values) => {
const { ...rest } = values;
onFinish({
...rest,
status: "A",
});
};
How can I check if the onFinish function sent data successfully or failed?
const { ...rest } = values;
onFinish({
...rest,
status: "A",
});
};
How can I check if the onFinish function sent data successfully or failed?