const { Moralis, chainId, user, isWeb3Enabled, account } = useMoralis();
const { data, error, isLoading } = useMoralisQuery(âAvaxBearsâ, query=>query.equalTo(âOwnerâ, account));
console.log(account);
This function produces empty results, but if I put the log of the account directly, the result will be obtained. Whatâs the problem?