From 94589ccfacc53cc29a4ad7e44c11a40404c62a45 Mon Sep 17 00:00:00 2001 From: Vlad Date: Sat, 7 May 2022 18:43:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1orrected=20tutorial=20code=20snippet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the extra semicolon --- src/tutorial/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/index.md b/src/tutorial/index.md index 4e2ba5966..ed8d8eda3 100644 --- a/src/tutorial/index.md +++ b/src/tutorial/index.md @@ -522,7 +522,7 @@ The front-end doesn't use a build system (webpack, grunt, etc.) to be as easy as App.web3Provider = window.ethereum; try { // Request account access - await window.ethereum.request({ method: "eth_requestAccounts" });; + await window.ethereum.request({ method: "eth_requestAccounts" }); } catch (error) { // User denied account access... console.error("User denied account access")