diff --git a/public/squint/index.html b/public/squint/index.html
index 9dc88f5..82fcadc 100644
--- a/public/squint/index.html
+++ b/public/squint/index.html
@@ -61,7 +61,7 @@
diff --git a/public/squint/js/demo.mjs b/public/squint/js/demo.mjs
index ccf500a..85cd2ee 100644
--- a/public/squint/js/demo.mjs
+++ b/public/squint/js/demo.mjs
@@ -26,12 +26,10 @@ let theme = EditorView.theme({
});
let compilerState = null;
let evalCode = async function (code) {
- console.log('hello1')
compilerState = compileStringEx(`(do ${code})`, {repl: true,
context: 'return',
"elide-exports": true}, compilerState)
let js = compilerState.javascript;
- console.log('js', js);
let result;
try {
result = {value: await eval(`(async function() { ${js} })()`)};