Skip to content

Commit

Permalink
Fix broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
danforbes committed May 28, 2024
1 parent 00ac1e7 commit fd3f199
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/guides/wallet/web3_modal_guide/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ const USDTAddress = '0xdac17f958d2ee523a2206206994597c13d831ec7';
function Components() {
const { isConnected } = useWeb3ModalAccount()
const { walletProvider } = useWeb3ModalProvider()
const [USDTBalance, setUSDTBalance] = useState(0);
const [smartContractName, setSmartContractName] = useState('');
const [USDTBalance, setUSDTBalance] = useState(0);
const [smartContractName, setSmartContractName] = useState('');

async function getContractInfo() {
if (!isConnected) throw Error('not connected');
Expand All @@ -126,5 +126,5 @@ function Components() {
```
:::info
- To learn how to set up Web3modal with vue, click [here](/guides/web3_modal_guide/vue).
:::
- To learn how to set up Web3modal with vue, click [here](/guides/wallet/web3_modal_guide/vue).
:::

0 comments on commit fd3f199

Please sign in to comment.