From f2397b98949561c37b9321d95fe75a04553ede78 Mon Sep 17 00:00:00 2001 From: Attila Farago Date: Wed, 23 Oct 2024 19:57:45 +0200 Subject: [PATCH] style: minor removal of unneeded console message --- src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ecbf248..2b90893 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,6 @@ function handleFileUpload(file: File) { try { const retval = await convertProjectToPython(input, options); $('#preview-svg').html(retval?.svg ?? ''); - console.log(retval?.svg); $('#preview-svg-map') .html(retval?.svg ?? '') .removeClass('d-none');