From 0fc6d475dd01da8aaa12ea91835615cbde8d6905 Mon Sep 17 00:00:00 2001 From: Danny Spina Date: Mon, 19 Jun 2023 00:04:21 +0200 Subject: [PATCH] Fix typo --- dist/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.html b/dist/index.html index 56b6a7b..9866016 100644 --- a/dist/index.html +++ b/dist/index.html @@ -17,7 +17,7 @@ const input = document.querySelector("input"); button.addEventListener("click", function () { const blazeUrl = "https://ill-red-skunk-wig.cyclic.app"; - location.href = `${blazeUrl}/at=${input.value}`; + location.href = `${blazeUrl}?at=${input.value}`; });