Reduce data dumped in console log from web, desktop app

This commit is contained in:
Debanjum Singh Solanky
2023-11-11 02:05:07 -08:00
parent f044a89d50
commit e44e6df221
3 changed files with 0 additions and 3 deletions

View File

@@ -188,7 +188,6 @@
fetch(url, { headers })
.then(response => response.json())
.then(data => {
console.log(data);
document.getElementById("results").innerHTML = render_results(data, query, type);
});
}