Hi
Iâm trying to use moralis and call a function but I get this error. I checked the moralis and react-moralis version in package.json and itâs ok.
Do you know whatâs the reason of this error?
import Moralis from 'moralis';
.
.
.
const getCA = async () => {
        const getAddress = await Moralis.executeFunction(options);
        console.log(getAddress );
        return getAddress ;
    }
 
      
    