From 115205c5f02a1fd13f0cb2c7ae53ebc8b7ecc7bc Mon Sep 17 00:00:00 2001 From: Brian Beck Date: Tue, 28 Jan 2025 14:50:40 -0800 Subject: [PATCH] Remove console.log --- src/importUtils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/importUtils.ts b/src/importUtils.ts index 1744caf..98291e1 100644 --- a/src/importUtils.ts +++ b/src/importUtils.ts @@ -24,7 +24,6 @@ const ignoreFilePattern = /^(\.|__MACOSX)/; export async function readZipFile(inputFile: File) { const content = await JSZip.loadAsync(inputFile); - console.log("files", content.files); const skins = await Promise.all( Object.entries(content.files).map(async ([path, file]) => { if (!ignoreFilePattern.test(path)) {