AndreaZero
AndreaZero
This should be done in the contract not in the dapp
I need it too. I tried multiple edits but nothing worked for me.
You need to remove this lines from App.js ` { window.open("/config/roadmap.pdf", "_blank"); }} style={{ margin: "5px", }} > Roadmap { window.open(CONFIG.MARKETPLACE_LINK, "_blank"); }} > {CONFIG.MARKETPLACE} `
I got the same issue.. I can't mint from my deployed website on Netlify but actually works mint from contract
> nope :/
Hey, i solved this by deploying a new contract and building a new app from scratch. The issue for me was in the contract, try to check it
The error suggests you're accessing `useAccount ` before it's defined. **Ensure:** - It's declared before use. - There's no typo. - Imports/exports are correct if it's from another module. Can...
You've imported the `useAccount` function and then, within the Header component, you're attempting to call `useAccount()` as if it's a function and at the same time, you're trying to extract...
The error is in this line of code: `const { address, useAccount } = useAccount();` To fix it, you should: Change the variable name you're trying to destructure from the...