From bfe169abb8a39960b508e468cc76aab6800dc4f2 Mon Sep 17 00:00:00 2001 From: Radu Sandor Date: Wed, 21 Jan 2026 11:45:03 +0200 Subject: [PATCH] loginOrSignupWithWallet small fix --- sdks/react/using-external-wallets/authentication.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/react/using-external-wallets/authentication.mdx b/sdks/react/using-external-wallets/authentication.mdx index 1d898238..fc3a274e 100644 --- a/sdks/react/using-external-wallets/authentication.mdx +++ b/sdks/react/using-external-wallets/authentication.mdx @@ -155,7 +155,7 @@ For this guide, we'll use `loginOrSignUpWithWallet()` as the reference, since it const handleLoginOrSignUp = async () => { try { - await loginOrSignUpWithWallet(selectedProvider); + await loginOrSignupWithWallet({ walletProvider: selectedProvider }); } catch (error) { console.error("Error logging in or signing up:", error); }