Remove console.log

This commit is contained in:
Brian Beck 2025-01-28 14:50:40 -08:00
parent 0af1b0123f
commit 115205c5f0

View file

@ -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)) {