Issue was with the useFetch custom Hook, its expecting
const {
loading: loadingCreateJob,
error: errorCreateJob,
data: dataCreateJob,
fn: fnCreateJob,
} = useFetch((token, options, questions, jobData) => {
return addNewJob(token, questions, jobData);
});