Hi everyone,
I am using useNFTBalances() hook to get my nft balances in react.
After minted my NFT, I can’t get new nft from useNFTBalances().
But I can get new nft on metamask wallet.
How can I fix?
Here is my code.
const {data: NFTBalances, isLoading} = useNFTBalances();
…
useEffect(async () => {
console.log(NFTBalances.result); //it returns only old nfts without new one.
…
}, [NFTBalances]);
Hope your quick help.
Regards,