Skip to content

Commit

Permalink
Fix walletconnect modal
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Oct 15, 2024
1 parent 4c6d1db commit d790a13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function WalletConnectCode({
<>
<QRCodeSVG
value={wcUri}
size={300}
size={400}
bgColor="black"
fgColor={green[300]}
marginSize={8}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ function WalletList({
<WalletButton
name="WalletConnect"
leftIcon={<WalletIcon />}
onClick={() => setSelectedWallet("walletConnect")}
onClick={() => {
setSelectedWallet("walletConnect");
walletConnectConnector.connect();
}}
/>
)}
<WalletButton
Expand Down

0 comments on commit d790a13

Please sign in to comment.