diff --git a/apps/trading/components/vega-wallet-connect-button/vega-wallet-connect-button.tsx b/apps/trading/components/vega-wallet-connect-button/vega-wallet-connect-button.tsx index b905aaf56..dd26d0708 100644 --- a/apps/trading/components/vega-wallet-connect-button/vega-wallet-connect-button.tsx +++ b/apps/trading/components/vega-wallet-connect-button/vega-wallet-connect-button.tsx @@ -24,7 +24,13 @@ import classNames from 'classnames'; import { useGetCurrentRouteId } from '../../lib/hooks/use-get-current-route-id'; import { useT } from '../../lib/use-t'; -export const VegaWalletConnectButton = () => { +export const VegaWalletConnectButton = ({ + intent = Intent.None, + onClick, +}: { + intent?: Intent; + onClick?: () => void; +}) => { const t = useT(); const [dropdownOpen, setDropdownOpen] = useState(false); const openVegaWalletDialog = useVegaWalletDialogStore( @@ -117,9 +123,12 @@ export const VegaWalletConnectButton = () => { return (