From dc9438d2fbbe89ec05d4ee282b29cec5504492c7 Mon Sep 17 00:00:00 2001 From: Alivecow Date: Mon, 3 Mar 2025 16:02:11 +0100 Subject: [PATCH] refactor: Remove commented code Refs: OPS-12 --- senju/templates/prompt.html | 1 - 1 file changed, 1 deletion(-) diff --git a/senju/templates/prompt.html b/senju/templates/prompt.html index 1f08089..218809d 100644 --- a/senju/templates/prompt.html +++ b/senju/templates/prompt.html @@ -60,7 +60,6 @@ document.getElementById("submit-btn").addEventListener("click", function() { .then(response => response.text()) .then(data => { console.log(data); - //responseText.innerHTML = data[0] + "
" + data[1] + "
" + data[2]; let id = parseInt(data, 10); window.location.href = "/haiku/"+id; })