From b6b18fee8fb9df7e6a67b64e3852ffbd2c0ac009 Mon Sep 17 00:00:00 2001 From: ricardopxlcl <100590341+ricardopxlcl@users.noreply.github.com> Date: Tue, 21 May 2024 07:43:27 +0200 Subject: [PATCH] Update establishing-a-connection.md Remove extra ";" --- getting-started-with-solana/establishing-a-connection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started-with-solana/establishing-a-connection.md b/getting-started-with-solana/establishing-a-connection.md index 90ae381..4f96e4b 100644 --- a/getting-started-with-solana/establishing-a-connection.md +++ b/getting-started-with-solana/establishing-a-connection.md @@ -85,7 +85,7 @@ useEffect(() => { provider.connect({ onlyIfTrusted: true }) .then(({ publicKey }) => { // Handle successful eager connection - }); + }) .catch(() => { // Handle connection failure as usual })