From 5cc13a34b2e69f7cc76eec778a8c337ca97bec22 Mon Sep 17 00:00:00 2001 From: kenneth Date: Sat, 8 Nov 2025 23:17:45 +0000 Subject: [PATCH] chore: remove console log --- packages/convex/shared/filesystem.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/convex/shared/filesystem.ts b/packages/convex/shared/filesystem.ts index 70d5170..a68cf50 100644 --- a/packages/convex/shared/filesystem.ts +++ b/packages/convex/shared/filesystem.ts @@ -71,7 +71,6 @@ export type DeleteResult = { } export function newFileSystemHandle(item: FileSystemItem): FileSystemHandle { - console.log("item", item) switch (item.kind) { case FileType.File: return { kind: item.kind, id: item.doc._id }