From 85987af7e839aedc1037c0565c8f82eab4ea237a Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Thu, 7 Nov 2024 07:22:24 -0400 Subject: [PATCH] remove console.log --- examples/server/public/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/server/public/index.html b/examples/server/public/index.html index 6dcdd9c55..7e16980fc 100644 --- a/examples/server/public/index.html +++ b/examples/server/public/index.html @@ -529,7 +529,6 @@ alert('Invalid JSON for custom config. Please either fix it or leave it empty.'); return; } - console.log(this.config) for (const key of CONFIG_NUMERIC_KEYS) { if (isNaN(this.config[key]) || this.config[key].toString().trim().length === 0) { alert(`Invalid number for ${key} (expected an integer or a float)`);