diff --git a/apps/connect/src/routes/login.lazy.tsx b/apps/connect/src/routes/login.lazy.tsx index fc407ef8..94ef016a 100644 --- a/apps/connect/src/routes/login.lazy.tsx +++ b/apps/connect/src/routes/login.lazy.tsx @@ -36,7 +36,7 @@ function Login() { }, signMessage: async (message: string) => { if (embeddedWallet.walletClientType === 'privy') { - const { signature } = await signMessage({ message }); + const { signature } = await signMessage({ message }, { uiOptions: { showWalletUIs: false } }); return signature; } const [address] = await walletClient.getAddresses();