diff --git a/packages/gui/src/components/walletConnect/WalletConnectAddConnectionDialog.tsx b/packages/gui/src/components/walletConnect/WalletConnectAddConnectionDialog.tsx index 3c5bb37310..c4e71b9bea 100644 --- a/packages/gui/src/components/walletConnect/WalletConnectAddConnectionDialog.tsx +++ b/packages/gui/src/components/walletConnect/WalletConnectAddConnectionDialog.tsx @@ -21,6 +21,7 @@ import { Typography, Select, MenuItem, + Checkbox, } from '@mui/material'; import React, { useEffect, useState } from 'react'; import { useForm, useWatch } from 'react-hook-form'; @@ -125,13 +126,25 @@ export default function WalletConnectAddConnectionDialog(props: WalletConnectAdd function renderKeysMultiSelect() { return ( - {keys?.map((key, index) => ( handleToggleSelectFingerprint(key.fingerprint)} + sx={{ + paddingLeft: '4px', + }} > + {key.label || Wallet {index + 1}} ({key.fingerprint}) ))}