web3modal icon indicating copy to clipboard operation
web3modal copied to clipboard

[bug] Modal shrinks when select wallet to connect

Open Philword opened this issue 4 months ago • 0 comments

Link to minimal reproducible example

https://test.astroarmadillos.io/

Summary

When open modal I have option to select wallet to connect to. When I click on wallet it shrinks and I'm not able to connect. I was able to connect only when activated email connect (emailShowWallets: true, and email: true) and after input email and then canceled connecting, click on metamask wallet it started working. How to solve it? Url with website were I have this issue provided. https://test.astroarmadillos.io/

IMG_3298

List of related npm package versions

import { createAppKit } from '@reown/appkit/vue' import { EthersAdapter } from '@reown/appkit-adapter-ethers' import { mainnet, polygon } from '@reown/appkit/networks' import { useAppKitProvider, useAppKitAccount } from "@reown/appkit/vue" import { BrowserProvider } from 'ethers'

const modal = createAppKit({ adapters: [new EthersAdapter()], networks: [polygon], metadata, projectId, themeMode: 'light', features: { analytics: false, email: false, // default to true socials: false, emailShowWallets: false, swaps: false, } })

modal.switchNetwork(polygon)

Philword avatar Oct 19 '24 09:10 Philword