From 606e4debff7ca64b2c2c1242806dd58f4d91f2fd Mon Sep 17 00:00:00 2001 From: Josh Kadis <997097+joshkadis@users.noreply.github.com> Date: Tue, 23 Jul 2024 14:55:48 -0400 Subject: [PATCH] fix: remove extra semicolons in web-share example --- web-share/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-share/index.html b/web-share/index.html index 836d9423..c57430b8 100644 --- a/web-share/index.html +++ b/web-share/index.html @@ -38,10 +38,10 @@

Sharing MDN

} navigator.share(shareData) .then(() => - resultPara.textContent = 'MDN shared successfully'; + resultPara.textContent = 'MDN shared successfully' ) .catch((e) => - resultPara.textContent = 'Error: ' + e; + resultPara.textContent = 'Error: ' + e ) });