From 79955d467107f9160d53dcbca885097b94295b49 Mon Sep 17 00:00:00 2001 From: Nik Graf Date: Tue, 5 Aug 2025 19:04:50 +0200 Subject: [PATCH] disable signing UI --- apps/connect/src/routes/login.lazy.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();