handleOnFinish()

const handleOnFinish = (values) => {
const { ...rest } = values;
onFinish({
...rest,
status: "A",
});
};

How can I check if the onFinish function sent data successfully or failed?
Was this page helpful?