Is it possible to call two (or more) cloud functions inside the same React component?
const { fetch, data, error, isLoading } = useMoralisCloudFunction("getLastName", {
firstname: 'Jake',
});
const { fetch, data, error, isLoading } = useMoralisCloudFunction("getFirstName", {
lastname: 'Smith',
});
This will give me an error, because fetch, data, error, isLoading are already declared. Is there any other way to call useMoralisCloudFunction that would allow me to do it multiple times in one component?