From 41136150960fcbf08d80469236dbf0f6262f5312 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Wed, 21 Aug 2024 00:45:36 +0200 Subject: [PATCH] Remove unnecessary semi-colon --- static/app/go/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/go/index.html b/static/app/go/index.html index 416fc43..e584d27 100644 --- a/static/app/go/index.html +++ b/static/app/go/index.html @@ -30,7 +30,7 @@ const urls = { let key = window.location.hash.slice(1); if (key in urls) { redir_url = urls[key]; -}; +} console.log("Redirecting to " + redir_url + " - off you go!"); window.location = redir_url;