queryResult without values
im using the useShow an follow the documentation i can do this:
const { data, isLoading, isError } = queryResult;
const task = data?.data;
but my const task is undefined, how can i do?
const { data, isLoading, isError } = queryResult;
const task = data?.data;
but my const task is undefined, how can i do?
