refactor: Remove commented code

Refs: OPS-12
This commit is contained in:
Alivecow 2025-03-03 16:02:11 +01:00
parent 01484ba4ed
commit dc9438d2fb

View file

@ -60,7 +60,6 @@ document.getElementById("submit-btn").addEventListener("click", function() {
.then(response => response.text()) .then(response => response.text())
.then(data => { .then(data => {
console.log(data); console.log(data);
//responseText.innerHTML = data[0] + "<br>" + data[1] + "<br>" + data[2];
let id = parseInt(data, 10); let id = parseInt(data, 10);
window.location.href = "/haiku/"+id; window.location.href = "/haiku/"+id;
}) })