From 715af20f366ec00214410eda1c6aef6b44f7016b Mon Sep 17 00:00:00 2001 From: Sam Sneed <163201376+sam-sneed@users.noreply.github.com> Date: Fri, 31 May 2024 23:33:27 +0000 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2d41dbf..eaee1f8 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,7 @@ const sentence = document.getElementById("textBox1").value let p = document.getElementById("toxicityBool") const objSentence = [sentence] let toxic = await helpers.isToxic(objSentence) -p.innerText = toxic.toString() +p.innerText = JSON.stringify(toxic.toString) console.log(toxic) }